編寫:fastcome1985 - 原文:http://developer.android.com/training/notify-user/navigation.html
部分設(shè)計(jì)一個(gè)notification的目的是為了保持用戶的導(dǎo)航體驗(yàn)。為了詳細(xì)討論這個(gè)課題,請(qǐng)看 Notifications API引導(dǎo),分為下列兩種主要情況:
設(shè)置一個(gè)直接啟動(dòng)的入口Activity的PendingIntent,遵循以下步驟:
1.在manifest中定義你application的Activity層次,最終的manifest文件應(yīng)該像這個(gè):
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ResultActivity"
android:parentActivityName=".MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity"/>
</activity>
2.在基于啟動(dòng)Activity的Intent中創(chuàng)建一個(gè)返回棧,比如:
int id = 1;
...
Intent resultIntent = new Intent(this, ResultActivity.class);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
// Adds the back stack
stackBuilder.addParentStack(ResultActivity.class);
// Adds the Intent to the top of the stack
stackBuilder.addNextIntent(resultIntent);
// Gets a PendingIntent containing the entire back stack
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
...
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setContentIntent(resultPendingIntent);
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(id, builder.build());
一個(gè)特定的Activity不需要一個(gè)返回棧,所以你不需要在manifest中定義Activity的層次,以及你不需要調(diào)用 addParentStack()方法去構(gòu)建一個(gè)返回棧。作為代替,你需要用manifest設(shè)置Activity任務(wù)選項(xiàng),以及調(diào)用 getActivity()創(chuàng)建PendingIntent
manifest中,在Activity的
下面的代碼片段演示了這個(gè)過程:
// Instantiate a Builder object.
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
// Creates an Intent for the Activity
Intent notifyIntent =
new Intent(new ComponentName(this, ResultActivity.class));
// Sets the Activity to start in a new, empty task
notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
Intent.FLAG_ACTIVITY_CLEAR_TASK);
// Creates the PendingIntent
PendingIntent notifyIntent =
PendingIntent.getActivity(
this,
0,
notifyIntent,
PendingIntent.FLAG_UPDATE_CURRENT
);
// Puts the PendingIntent into the notification builder
builder.setContentIntent(notifyIntent);
// Notifications are issued by sending them to the
// NotificationManager system service.
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
// Builds an anonymous Notification object from the builder, and
// passes it to the NotificationManager
mNotificationManager.notify(id, builder.build());