0

MY アプリケーションは、実行中に通知を表示します。しかし、ホーム ボタンをクリックすると (アプリケーションはまだバックグラウンドで実行されています)、通知が消えます。ユーザーがクリックするまでそのままにしておくにはどうすればよいですか。ありがとう

   private void showNotification() {

    // The PendingIntent to launch our activity if the user selects this
    // notification
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
            serviceIntent, 0);


    Notification notification = new Notification.Builder(this)
            .setTicker("Accelormeter app").setContentTitle("Acc")
            .setContentText("Notification content.")
            .setSmallIcon(R.drawable.noti_icon).setContentIntent(contentIntent)
            .getNotification();




    // Send the notification.
    mNM.notify(0, notification);

}
4

1 に答える 1

1

getNotification(); 代わりbuild();に Notification.Builder で使用しないでください

于 2013-10-20T12:42:05.400 に答える