web-dev-qa-db-ja.com

アプリケーションの実行中に、バックグラウンドを含め、ステータスバーにアイコンを表示する方法を教えてください。

アプリケーションがバックグラウンドで実行されているときも含めて、実行中のときにステータスバーにアイコンを配置したいと思います。これどうやってするの?

27

NotificationとNotificationManagerでこれを行うことができるはずです。ただし、アプリケーションが実行されていないことを確認するための保証された方法を取得することは難しい部分です。

あなたが望むものの基本的な機能を得るには、次のようなことをすることができます:

Notification notification = new Notification(R.drawable.your_app_icon,
                                             R.string.name_of_your_app, 
                                             System.currentTimeMillis());
notification.flags |= Notification.FLAG_NO_CLEAR
                   | Notification.FLAG_ONGOING_EVENT;
NotificationManager notifier = (NotificationManager)
     context.getSystemService(Context.NOTIFICATION_SERVICE);
notifier.notify(1, notification);

このコードは、アプリケーションの起動時に確実に起動される場所にある必要があります。おそらく、アプリケーションのカスタムアプリケーションオブジェクトのonCreate()メソッド内です。

ただし、その後は注意が必要です。アプリケーションの強制終了はいつでも発生する可能性があります。したがって、ApplicationクラスのonTerminate()に何かを配置することもできますが、呼び出されるとは限りません。

((NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE)).cancel(1);

アイコンを削除するために必要なものになります。

19
Greg Giacovelli

新しいAPIの場合、NotificationCompat.Builderを使用できます-

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
    .setSmallIcon(R.mipmap.ic_launcher)
    .setContentTitle("Title");
Intent resultIntent = new Intent(this, MyActivity.class);
PendingIntent resultPendingIntent = PendingIntent.getActivity(
this,
0,
resultIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
mBuilder.setContentIntent(resultPendingIntent);
Notification notification = mBuilder.build();
notification.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT;

mNotifyMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
mNotifyMgr.notify(NOTIFICATION_ID, notification);

アプリケーションが実行中で、誰かが手動でアプリケーションを閉じている限り表示されます。いつでも電話で通知をキャンセルできます-

mNotifyMgr.cancel(NOTIFICATION_ID);
9
mjosh

開発ガイド「 ステータスバー通知の作成 」をご覧ください。

アプリケーションの実行中にのみアイコンをそこに保持するという目標を達成する1つの方法は、onCreate()で通知を初期化し、cancel(int)メソッドで onPause() を呼び出すことです。 isFinishing()がtrueを返す場合のみ。

例:

private static final int NOTIFICATION_EX = 1;
private NotificationManager notificationManager;

@Override
public void onCreate() {
    super.onCreate();

    notificationManager = (NotificationManager) 
        getSystemService(Context.NOTIFICATION_SERVICE);

    int icon = R.drawable.notification_icon;
    CharSequence tickerText = "Hello";
    long when = System.currentTimeMillis();

    Notification notification = new Notification(icon, tickerText, when);

    Context context = getApplicationContext();
    CharSequence contentTitle = "My notification";
    CharSequence contentText = "Hello World!";
    Intent notificationIntent = new Intent(this, MyClass.class);
    PendingIntent contentIntent = PendingIntent.getActivity(this, 
        0, notificationIntent, 0);

    notification.setLatestEventInfo(context, contentTitle, 
        contentText, contentIntent);

    notificationManager.notify(NOTIFICATION_EX, notification);
}

@Override
protected void onPause() {
    super.onPause();
    if (isFinishing()) {
        notificationManager.cancel(NOTIFICATION_EX);
    }
}
6
Brian

それは実際に動作します。上記の例からメソッドを作成しました:

private void applyStatusBar(String iconTitle, int notificationId) {
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(iconTitle);
Intent resultIntent = new Intent(this, ActMain.class);
PendingIntent resultPendingIntent = PendingIntent.getActivity(this, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
mBuilder.setContentIntent(resultPendingIntent);
Notification notification = mBuilder.build();
notification.flags |= Notification.FLAG_NO_CLEAR|Notification.FLAG_ONGOING_EVENT;

NotificationManager mNotifyMgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
mNotifyMgr.notify(notificationId, notification);}

次のように呼び出す必要があります。applyStatusBar( "Statusbar Test"、10);

4
Luiz Lima