How to set time of notification in Android Studio(java)?
I want to add notifications in my app. I want it to show everyday at specific hour. I tried to do it with .setWhen but it doesn't work.
I wanted also to set vibration and sound, but it doesn't work. Notification shows immediately.
public class Activity_addMedicine extends AppCompatActivity implements TimePickerDialog.OnTimeSetListener {
private NotificationManagerCompat notificationManager;
public static long time;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_medicine);
notificationManager = NotificationManagerCompat.from(this);
Button buttonOK = (Button) findViewById(R.id.button_OK2);
buttonOK.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment timePicker = new TimePicker();
timePicker.show(getSupportFragmentManager(), "time picker");
}
});
}
@Override
public void onTimeSet(android.widget.TimePicker view, int hourOfDay, int minute) {
Calendar c = getInstance();
c.set(Calendar.HOUR_OF_DAY, hourOfDay);
c.set(Calendar.MINUTE, minute);
c.set(Calendar.SECOND, 0);
time = c.getTimeInMillis();
}
public void sendOnChannel1(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_1_ID)
.setSmallIcon(R.drawable.icon)
.setContentTitle("POWIADOMIENIE - TEST")
.setContentText("Przypomnienie o wzieciu leku")
.setWhen(time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(1, notification);
}
public void sendOnChannel2(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_2_ID)
.setSmallIcon(R.drawable.icon)
.setWhen(time)
.setContentTitle("POWIADOMIENIE - TEST [2]")
.setContentText("Przypomnienie o wzieciu leku " + time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(2, notification);
}}
Here is App.java class, where channels are created:
public class App extends Application {
public static final String CHANNEL_1_ID = "channel1";
public static final String CHANNEL_2_ID = "channel2";
@Override
public void onCreate() {
super.onCreate();
createNotificationChannels();
}
private void createNotificationChannels() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel1 = new NotificationChannel(
CHANNEL_1_ID,
"Channel 1",
NotificationManager.IMPORTANCE_HIGH
);
channel1.setDescription("This is Channel 1");
NotificationChannel channel2 = new NotificationChannel(
CHANNEL_2_ID,
"Channel 2",
NotificationManager.IMPORTANCE_HIGH
);
channel2.setDescription("This is Channel 2");
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(channel1);
manager.createNotificationChannel(channel2);
}
}
}
I also added in AndroidManifest.xlm two permissions:
uses-permission android:name="android.permission.SET_ALARM"
uses-permission android:name="android.permission.VIBRATE"


add a comment |
I want to add notifications in my app. I want it to show everyday at specific hour. I tried to do it with .setWhen but it doesn't work.
I wanted also to set vibration and sound, but it doesn't work. Notification shows immediately.
public class Activity_addMedicine extends AppCompatActivity implements TimePickerDialog.OnTimeSetListener {
private NotificationManagerCompat notificationManager;
public static long time;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_medicine);
notificationManager = NotificationManagerCompat.from(this);
Button buttonOK = (Button) findViewById(R.id.button_OK2);
buttonOK.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment timePicker = new TimePicker();
timePicker.show(getSupportFragmentManager(), "time picker");
}
});
}
@Override
public void onTimeSet(android.widget.TimePicker view, int hourOfDay, int minute) {
Calendar c = getInstance();
c.set(Calendar.HOUR_OF_DAY, hourOfDay);
c.set(Calendar.MINUTE, minute);
c.set(Calendar.SECOND, 0);
time = c.getTimeInMillis();
}
public void sendOnChannel1(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_1_ID)
.setSmallIcon(R.drawable.icon)
.setContentTitle("POWIADOMIENIE - TEST")
.setContentText("Przypomnienie o wzieciu leku")
.setWhen(time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(1, notification);
}
public void sendOnChannel2(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_2_ID)
.setSmallIcon(R.drawable.icon)
.setWhen(time)
.setContentTitle("POWIADOMIENIE - TEST [2]")
.setContentText("Przypomnienie o wzieciu leku " + time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(2, notification);
}}
Here is App.java class, where channels are created:
public class App extends Application {
public static final String CHANNEL_1_ID = "channel1";
public static final String CHANNEL_2_ID = "channel2";
@Override
public void onCreate() {
super.onCreate();
createNotificationChannels();
}
private void createNotificationChannels() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel1 = new NotificationChannel(
CHANNEL_1_ID,
"Channel 1",
NotificationManager.IMPORTANCE_HIGH
);
channel1.setDescription("This is Channel 1");
NotificationChannel channel2 = new NotificationChannel(
CHANNEL_2_ID,
"Channel 2",
NotificationManager.IMPORTANCE_HIGH
);
channel2.setDescription("This is Channel 2");
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(channel1);
manager.createNotificationChannel(channel2);
}
}
}
I also added in AndroidManifest.xlm two permissions:
uses-permission android:name="android.permission.SET_ALARM"
uses-permission android:name="android.permission.VIBRATE"


add a comment |
I want to add notifications in my app. I want it to show everyday at specific hour. I tried to do it with .setWhen but it doesn't work.
I wanted also to set vibration and sound, but it doesn't work. Notification shows immediately.
public class Activity_addMedicine extends AppCompatActivity implements TimePickerDialog.OnTimeSetListener {
private NotificationManagerCompat notificationManager;
public static long time;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_medicine);
notificationManager = NotificationManagerCompat.from(this);
Button buttonOK = (Button) findViewById(R.id.button_OK2);
buttonOK.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment timePicker = new TimePicker();
timePicker.show(getSupportFragmentManager(), "time picker");
}
});
}
@Override
public void onTimeSet(android.widget.TimePicker view, int hourOfDay, int minute) {
Calendar c = getInstance();
c.set(Calendar.HOUR_OF_DAY, hourOfDay);
c.set(Calendar.MINUTE, minute);
c.set(Calendar.SECOND, 0);
time = c.getTimeInMillis();
}
public void sendOnChannel1(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_1_ID)
.setSmallIcon(R.drawable.icon)
.setContentTitle("POWIADOMIENIE - TEST")
.setContentText("Przypomnienie o wzieciu leku")
.setWhen(time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(1, notification);
}
public void sendOnChannel2(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_2_ID)
.setSmallIcon(R.drawable.icon)
.setWhen(time)
.setContentTitle("POWIADOMIENIE - TEST [2]")
.setContentText("Przypomnienie o wzieciu leku " + time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(2, notification);
}}
Here is App.java class, where channels are created:
public class App extends Application {
public static final String CHANNEL_1_ID = "channel1";
public static final String CHANNEL_2_ID = "channel2";
@Override
public void onCreate() {
super.onCreate();
createNotificationChannels();
}
private void createNotificationChannels() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel1 = new NotificationChannel(
CHANNEL_1_ID,
"Channel 1",
NotificationManager.IMPORTANCE_HIGH
);
channel1.setDescription("This is Channel 1");
NotificationChannel channel2 = new NotificationChannel(
CHANNEL_2_ID,
"Channel 2",
NotificationManager.IMPORTANCE_HIGH
);
channel2.setDescription("This is Channel 2");
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(channel1);
manager.createNotificationChannel(channel2);
}
}
}
I also added in AndroidManifest.xlm two permissions:
uses-permission android:name="android.permission.SET_ALARM"
uses-permission android:name="android.permission.VIBRATE"


I want to add notifications in my app. I want it to show everyday at specific hour. I tried to do it with .setWhen but it doesn't work.
I wanted also to set vibration and sound, but it doesn't work. Notification shows immediately.
public class Activity_addMedicine extends AppCompatActivity implements TimePickerDialog.OnTimeSetListener {
private NotificationManagerCompat notificationManager;
public static long time;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_medicine);
notificationManager = NotificationManagerCompat.from(this);
Button buttonOK = (Button) findViewById(R.id.button_OK2);
buttonOK.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment timePicker = new TimePicker();
timePicker.show(getSupportFragmentManager(), "time picker");
}
});
}
@Override
public void onTimeSet(android.widget.TimePicker view, int hourOfDay, int minute) {
Calendar c = getInstance();
c.set(Calendar.HOUR_OF_DAY, hourOfDay);
c.set(Calendar.MINUTE, minute);
c.set(Calendar.SECOND, 0);
time = c.getTimeInMillis();
}
public void sendOnChannel1(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_1_ID)
.setSmallIcon(R.drawable.icon)
.setContentTitle("POWIADOMIENIE - TEST")
.setContentText("Przypomnienie o wzieciu leku")
.setWhen(time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setCategory(NotificationCompat.CATEGORY_MESSAGE)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(1, notification);
}
public void sendOnChannel2(View view) {
Notification notification = new NotificationCompat.Builder(this, App.CHANNEL_2_ID)
.setSmallIcon(R.drawable.icon)
.setWhen(time)
.setContentTitle("POWIADOMIENIE - TEST [2]")
.setContentText("Przypomnienie o wzieciu leku " + time)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setSound(
RingtoneManager.getDefaultUri(
RingtoneManager.TYPE_NOTIFICATION))
.setVibrate(new long{1000, 1000, 1000, 1000, 1000})
.setCategory(NotificationCompat.CATEGORY_ALARM)
.build();
notificationManager.notify(2, notification);
}}
Here is App.java class, where channels are created:
public class App extends Application {
public static final String CHANNEL_1_ID = "channel1";
public static final String CHANNEL_2_ID = "channel2";
@Override
public void onCreate() {
super.onCreate();
createNotificationChannels();
}
private void createNotificationChannels() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel1 = new NotificationChannel(
CHANNEL_1_ID,
"Channel 1",
NotificationManager.IMPORTANCE_HIGH
);
channel1.setDescription("This is Channel 1");
NotificationChannel channel2 = new NotificationChannel(
CHANNEL_2_ID,
"Channel 2",
NotificationManager.IMPORTANCE_HIGH
);
channel2.setDescription("This is Channel 2");
NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(channel1);
manager.createNotificationChannel(channel2);
}
}
}
I also added in AndroidManifest.xlm two permissions:
uses-permission android:name="android.permission.SET_ALARM"
uses-permission android:name="android.permission.VIBRATE"




asked Jan 2 at 0:14
ZanZan
133
133
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53999970%2fhow-to-set-time-of-notification-in-android-studiojava%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53999970%2fhow-to-set-time-of-notification-in-android-studiojava%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown