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);
}