アプリに次のコードの通知があります。
//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
移動する
—
Kρяσѕρєя
Context context = getApplicationContext();
前に、Notification notification = new Notification(icon, tickerText, when);
あなたが活動を開始するための右のコンテキストを渡していないかもしれない
4年以上前...その日からどれだけ長い旅をしたか:)しかし、Android通知には何も変更されません;)
—
Hamed Ghadirian 2017年
@HamedGhほぼ5年前!:)))
—
Reza_Rg 2017
@Reza_Rgは7年前です。私は同じ問題を抱えています!
—
fuliozor