1
public void notification_status(Activity activity, String title, String details)
{
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) activity.getSystemService(ns);
        int icon = R.drawable.bulogo;
        CharSequence tickerText = "My App";
        long when = System.currentTimeMillis();

        Notification notification = new Notification(icon, tickerText, when);
        Context context = activity.getApplicationContext();
        CharSequence contentTitle = title;
        CharSequence contentText = details;

      ----->  Intent notificationIntent = new Intent(activity, ???????);
        PendingIntent contentIntent = PendingIntent.getActivity(activity, 0, notificationIntent, 0);

        notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
        notification.sound = Uri.parse("android.resource://com.champloo.mugen/" + R.raw.beep);

        mNotificationManager.notify(1, notification);
}

こんにちはみんな私はこのメソッドを作ったので、アプリのどこかで呼び出してステータスバーに通知を投稿します。ユーザーがプログラムを一時的に閉じた場合に、プログラムに最後のアクティビティに戻るように指示する方法がわかりません。ステータスバーの下の通知を押しました。

助けてください!

4

1 に答える 1

3

アプリの起動時に Android が使用するのと同じインテント フィルターを使用するだけです。

    final Intent notificationIntent = new Intent(context, YourActivity.class);
    notificationIntent.setAction(Intent.ACTION_MAIN);
    notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);

通知バーからアクティビティを開くために作成したインテントは、アプリの起動に使用される Android と同じであるため、新しいアクティビティを作成する代わりに、以前に開いたアクティビティが表示されます。

于 2013-04-25T13:17:41.913 に答える