0
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つ必要なだけで、残りを完了します。再度、感謝します。私はあなたの親切な返事を探しています..

4

1 に答える 1

0

これを試して..!

 long timestamp=System.currentTimeMillis();

 int i=(int) timestamp;


NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
                .setSmallIcon(R.drawable.ic_launcher)
                .setContentTitle("Title")
                             .setAutoCancel(true);;


 TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);

 stackBuilder.addParentStack(MyNewActivity.class);

 stackBuilder.addNextIntent(resultIntent);

 PendingIntent pendingIntent =stackBuilder.getPendingIntent(0,PendingIntent.FLAG_UPDATE_CURRENT);

 mBuilder.setContentIntent(pendingIntent);

  mNotificationManager =(NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);

  mNotificationManager.notify(i, mBuilder.build());
于 2013-03-01T07:39:21.593 に答える