Измените свой AlarmReceiver
класс, как показано ниже
public class AlarmReceiver extends BroadcastReceiver {
String TAG = "AlarmReceiver";
public static String NotificationMsg="You have 5 unwatched videos", NotificationTitle = "Watch them now?";
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
if (intent.getAction() != null && context != null) {
if (intent.getAction().equalsIgnoreCase(Intent.ACTION_BOOT_COMPLETED)) {
// Set the alarm here.
Log.d(TAG, "onReceive: BOOT_COMPLETED");
LocalData localData = new LocalData(context);
NotificationScheduler.setReminder(context, AlarmReceiver.class, localData.get_hour(), localData.get_min());
return;
}
}
Log.d(TAG, "onReceive: ");
//Trigger the notification
NotificationScheduler.showNotification(context, NotificationActivity.class,
NotificationTitle, NotificationMsg);
}
}
Затем создайте здесь новое действие, которое я создал NotificationActivity
public class NotificationActivity extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ShowDialog();
}
@SuppressLint("ResourceAsColor")
public void ShowDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(NotificationActivity.this);
builder.setMessage("\n" + NotificationMsg);
TextView title = new TextView(NotificationActivity.this);
title.setText(NotificationTitle);
title.setBackgroundColor(Color.DKGRAY);
title.setPadding(20, 20, 20, 20);
title.setGravity(Gravity.CENTER);
title.setTextColor(Color.WHITE);
title.setTextSize(20);
builder.setCustomTitle(title)
.setPositiveButton(android.R.string.ok,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
//finishAffinity();
}
});
builder.show();
}
}
Вывод здесь -
Выходные данные будут такими:
Надеюсь, это сработает ... Пожалуйста, не забудьте принять ответ и проголосовать ...