private void generateNotification() {
// TODO Auto-generated method stub
String notificationTicket=new Date(System.currentTimeMillis()).toLocaleString();
long when=System.currentTimeMillis();
Notification myNotification=new Notification(R.drawable.ic_launcher, notificationTicket, when);
Intent intent=new Intent(getApplicationContext(),MyNewActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pendingIntent=PendingIntent.getActivity(getApplicationContext(), 0, intent, 0);
myNotification.setLatestEventInfo(getApplicationContext(), null, "Hi some package Added", pendingIntent);
notificationManager.notify(0, myNotification);
}
ボタンを使用して通知を起動しましたが、ActionBar に表示されますが、必要な新しいアクティビティが読み込まれません。以前に NotificationManager を定義しました。通知をキャンセルするボタンもありますが、「数秒」だけの通知なので意味がありません。前もって感謝します。
startButton=(Button)findViewById(R.id.button1);
startButton.setOnClickListener(this);
stopButton=(Button)findViewById(R.id.button2);
stopButton.setOnClickListener(this);
notificationManager=(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
それでも、通知を正常に実行するための解決策を見つけています!!!! メッセージを表示しますが、ユーザーに通知された後にトリガーしようとしているアクティビティが機能していません....結果を提供する通知のデモが1つ必要なだけで、残りを完了します。再度、感謝します。私はあなたの親切な返事を探しています..