Я пытаюсь отправить уведомление от службы и делает это успешно (уведомление отображается в строке состояния).НО, после нажатия на уведомление, чтобы посмотреть активность - я возвращаюсь на домашний мобильный экран.Кроме того, я заметил, что в режиме отладки я не обращаюсь к методу «onCreate».
Вот мой кусок кода: Код службы:
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
int icon = R.drawable.notificationicon;
CharSequence tickerText = "Hello";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
new Intent(this, NotificationsActivity.class), 0);
notification.setLatestEventInfo(this, "My notification","Hello World!", pendingIntent);
notificationManager.notify(1, notification);
Код деятельности:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(dialogLayout);
}