我的应用程序中有一条包含以下代码的通知:
//Notification Start
notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int icon = R.drawable.n1;
CharSequence tickerText = "Call Blocker";
long when = System.currentTimeMillis(); //now
Notification notification = new Notification(icon, tickerText, when);
Intent notificationIntent = new Intent(context, Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
Context context = getApplicationContext();
CharSequence title = "Call Blocker";
text = "Calls will be blocked while driving";
notification.setLatestEventInfo(context, title, text, contentIntent);
notification.flags |= Notification.FLAG_ONGOING_EVENT;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
notificationManager.notify(1, notification);
}
我的通知触发得很好,但是我的问题是,当我在通知中心中单击通知时,它无法启动我的应用程序。
基本上,点击我的通知后,什么也不会发生!我应该怎么做才能在点击通知后开始我的主要活动。谢谢。
2
试试这个
—
Ram kiran
移动
—
ρяσѕρєяķ
Context context = getApplicationContext();
之前,Notification notification = new Notification(icon, tickerText, when);
也许你不传递正确的背景下开始的活动
超过4年前...从那天起您要走多长时间:)但android通知没有任何改变;)
—
Hamed Ghadirian
@HamedGh大约5年前!:)))
—
Reza_Rg '17
@Reza_Rg是7年前。我也有同样的问题!
—
fuliozor