เริ่มกิจกรรมจากการแจ้งเตือน
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
เมื่อเริ่มกิจกรรมจากการแจ้งเตือน คุณต้องเก็บ
ประสบการณ์การนำทางที่คาดไว้ การแตะปุ่มย้อนกลับต้องนำผู้ใช้กลับมา
ผ่านกระบวนการทำงานปกติของแอปไปยังหน้าจอหลัก และเปิดเมนู "ล่าสุด"
ต้องแสดงกิจกรรมเป็นงานแยกต่างหาก เพื่อรักษาการนำทางนี้
ให้เริ่มกิจกรรมในงานใหม่
วิธีการพื้นฐานในการตั้งค่าลักษณะการแตะสำหรับการแจ้งเตือนของคุณมีอธิบายไว้ใน
สร้างองค์ประกอบ
การแจ้งเตือน
หน้านี้จะอธิบายวิธีตั้งค่า
PendingIntent
สำหรับ
การดำเนินการของการแจ้งเตือน เพื่อให้ระบบสร้างงานและการทำงานใหม่
สแต็ก คุณจะทำสิ่งนี้ได้อย่างไร
ขึ้นอยู่กับประเภทกิจกรรมที่คุณเริ่มทำ ดังนี้
- กิจกรรมที่ทำเป็นประจำ
- นี่คือกิจกรรมที่เกิดขึ้นเป็นส่วนหนึ่งของขั้นตอน UX ปกติของแอป วันและเวลา
ผู้ใช้มาถึงกิจกรรมจากการแจ้งเตือน งานใหม่จะต้อง
แสดงภาพย้อนกลับที่สมบูรณ์ เพื่อให้ผู้ใช้แตะปุ่ม "ย้อนกลับ" เพื่อไปยังส่วนต่างๆ
ในลำดับชั้นของแอป
- กิจกรรมพิเศษ
- ผู้ใช้จะเห็นกิจกรรมนี้เมื่อเริ่มต้นจากการแจ้งเตือนเท่านั้น ใน
กิจกรรมดังกล่าวขยาย UI การแจ้งเตือนโดยให้ข้อมูล
แสดงในการแจ้งเตือนได้ยาก กิจกรรมนี้ไม่จำเป็นต้องมี
Back Stack
ตั้งค่ากิจกรรมปกติ PendingIntent
หากต้องการเริ่มกิจกรรมปกติจากการแจ้งเตือน ให้ตั้งค่า PendingIntent
ด้วย TaskStackBuilder
เพื่อสร้าง Back Stack ใหม่ดังต่อไปนี้
กำหนดลำดับชั้นกิจกรรมของแอป
กำหนดลำดับชั้นโดยทั่วไปของกิจกรรมด้วยการเพิ่ม
android:parentActivityName
ของแต่ละ <activity>
ในไฟล์ Manifest ของแอป โปรดดูตัวอย่างต่อไปนี้
<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>
<!-- MainActivity is the parent for ResultActivity. -->
<activity
android:name=".ResultActivity"
android:parentActivityName=".MainActivity" />
...
</activity>
สร้าง PendingIntent ด้วย Back Stack
หากต้องการเริ่มกิจกรรมที่มีกิจกรรมย้อนหลัง ให้สร้าง
อินสแตนซ์ของ TaskStackBuilder
และการเรียกใช้
addNextIntentWithParentStack()
,
ส่งต่อ Intent
ให้กับ
กิจกรรมที่คุณต้องการเริ่ม
ตราบใดที่คุณกำหนดกิจกรรมของผู้ปกครองสำหรับแต่ละกิจกรรมตามที่อธิบายไว้
คุณสามารถโทรหา
getPendingIntent()
เพื่อรับ PendingIntent
ที่มี
แบ็กสแต็กทั้งหมด
Kotlin
// Create an Intent for the activity you want to start.
val resultIntent = Intent(this, ResultActivity::class.java)
// Create the TaskStackBuilder.
val resultPendingIntent: PendingIntent? = TaskStackBuilder.create(this).run {
// Add the intent, which inflates the back stack.
addNextIntentWithParentStack(resultIntent)
// Get the PendingIntent containing the entire back stack.
getPendingIntent(0,
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE)
}
Java
// Create an Intent for the activity you want to start.
Intent resultIntent = new Intent(this, ResultActivity.class);
// Create the TaskStackBuilder and add the intent, which inflates the back
// stack.
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addNextIntentWithParentStack(resultIntent);
// Get the PendingIntent containing the entire back stack.
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(0,
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);
หากจำเป็น คุณสามารถเพิ่มอาร์กิวเมนต์ให้กับออบเจ็กต์ Intent
ในสแต็กได้โดยเรียกใช้
TaskStackBuilder.editIntentAt()
บางครั้งขั้นตอนนี้ก็จำเป็นเพื่อให้แน่ใจว่ากิจกรรมใดๆ ในแบ็กสแต็ก
แสดงข้อมูลที่สื่อความหมายเมื่อผู้ใช้ไปหน้านั้นๆ
จากนั้นคุณจะส่ง PendingIntent
ไปยังการแจ้งเตือนได้ตามปกติ โดยทำดังนี้
Kotlin
val builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {
setContentIntent(resultPendingIntent)
...
}
with(NotificationManagerCompat.from(this)) {
notify(NOTIFICATION_ID, builder.build())
}
Java
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID);
builder.setContentIntent(resultPendingIntent);
...
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
notificationManager.notify(NOTIFICATION_ID, builder.build());
ตั้งค่ากิจกรรมพิเศษ PendingIntent
เนื่องจากกิจกรรมพิเศษที่เริ่มต้นจากการแจ้งเตือนไม่จำเป็นต้องได้รับการย้อนกลับ
คุณสามารถสร้าง PendingIntent
ได้โดยเรียกใช้
getActivity()
แต่ให้กำหนดตัวเลือกงานที่เหมาะสมในไฟล์ Manifest
-
ในไฟล์ Manifest ให้เพิ่มแอตทริบิวต์ต่อไปนี้ลงในส่วน
องค์ประกอบ
<activity>
-
android:taskAffinity=""
-
รวมกับ
วันที่
FLAG_ACTIVITY_NEW_TASK
แฟล็กที่คุณใช้ในโค้ด ให้ตั้งค่าแอตทริบิวต์นี้ว่างไว้เพื่อให้มั่นใจว่า
ระบบจะไม่นำกิจกรรมนี้ไปทำงานเริ่มต้นของแอป ช่วง
งานที่มีอยู่ซึ่งมีผู้สนใจเริ่มต้นของแอปจะไม่ได้เป็น
ที่ได้รับผลกระทบ
-
android:excludeFromRecents="true"
-
ไม่รวมงานใหม่จากหน้าจอ "ล่าสุด" เพื่อให้ผู้ใช้
ผู้ใช้ก็จะไม่สามารถกลับไปที่ส่วนดังกล่าว
โดยไม่ได้ตั้งใจได้
ตัวอย่างนี้จะแสดงในตัวอย่างต่อไปนี้
<activity
android:name=".ResultActivity"
android:launchMode="singleTask"
android:taskAffinity=""
android:excludeFromRecents="true">
</activity>
-
สร้างและออกการแจ้งเตือน
-
สร้าง
Intent
ที่เริ่มต้นคำสั่ง
Activity
-
ตั้งค่า
Activity
ให้เริ่มต้นงานใหม่ที่ว่างเปล่าโดย
การโทร
วันที่ setFlags()
พร้อมธง FLAG_ACTIVITY_NEW_TASK
และ
FLAG_ACTIVITY_CLEAR_TASK
-
สร้าง
PendingIntent
โดยการโทร
getActivity()
ตัวอย่างนี้จะแสดงในตัวอย่างต่อไปนี้
Kotlin
val notifyIntent = Intent(this, ResultActivity::class.java).apply {
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
}
val notifyPendingIntent = PendingIntent.getActivity(
this, 0, notifyIntent,
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
)
Java
Intent notifyIntent = new Intent(this, ResultActivity.class);
// Set the Activity to start in a new, empty task.
notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_CLEAR_TASK);
// Create the PendingIntent.
PendingIntent notifyPendingIntent = PendingIntent.getActivity(
this, 0, notifyIntent,
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE
);
- ส่ง
PendingIntent
ไปยังการแจ้งเตือนตามปกติ
Kotlin
val builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {
setContentIntent(notifyPendingIntent)
...
}
with(NotificationManagerCompat.from(this)) {
notify(NOTIFICATION_ID, builder.build())
}
Java
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID);
builder.setContentIntent(notifyPendingIntent);
...
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
notificationManager.notify(NOTIFICATION_ID, builder.build());
สำหรับข้อมูลเพิ่มเติมเกี่ยวกับตัวเลือกงานต่างๆ และวิธีสำรองข้อมูล
ให้ดูที่ Tasks และ Back Stack
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-27 UTC
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-27 UTC"],[],[],null,["# Start an Activity from a Notification\n\nWhen you start an activity from a notification, you must preserve the user's\nexpected navigation experience. Tapping the Back button must take the user back\nthrough the app's normal work flow to the Home screen, and opening the Recents\nscreen must show the activity as a separate task. To preserve this navigation\nexperience, start the activity in a fresh task.\n\nThe basic approach to set the tap behavior for your notification is described in\n[Create a basic\nnotification](/develop/ui/views/notifications/build-notification#SimpleNotification).\nThis page describes how to set up a\n[`PendingIntent`](/reference/android/app/PendingIntent) for your\nnotification's action so it creates a fresh [task and back\nstack](/guide/components/activities/tasks-and-back-stack). How you do this\ndepends on which type of activity you're starting:\n\nRegular activity\n: This is an activity that exists as a part of your app's normal UX flow. When\n the user arrives in the activity from the notification, the new task must\n include a complete back stack, letting the user tap the Back button to navigate\n up the app hierarchy.\n\nSpecial activity\n: The user only sees this activity if it's started from a notification. In a\n sense, this activity extends the notification UI by providing information that\n is difficult to display in the notification itself. This activity doesn't need a\n back stack.\n\nSet up a regular activity PendingIntent\n---------------------------------------\n\nTo start a regular activity from your notification, set up the `PendingIntent`\nusing [`TaskStackBuilder`](/reference/androidx/core/app/TaskStackBuilder)\nso that it creates a new back stack as follows.\n\n### Define your app's Activity hierarchy\n\nDefine the natural hierarchy for your activities by adding the\n[`android:parentActivityName`](/guide/topics/manifest/activity-element#parent)\nattribute to each [`\u003cactivity\u003e`](/guide/topics/manifest/activity-element)\nelement in your app manifest file. See the following example: \n\n```xml\n\u003cactivity\n android:name=\".MainActivity\"\n android:label=\"@string/app_name\" \u003e\n \u003cintent-filter\u003e\n \u003caction android:name=\"android.intent.action.MAIN\" /\u003e\n \u003ccategory android:name=\"android.intent.category.LAUNCHER\" /\u003e\n \u003c/intent-filter\u003e\n\u003c/activity\u003e\n\u003c!-- MainActivity is the parent for ResultActivity. --\u003e\n\u003cactivity\n android:name=\".ResultActivity\"\n android:parentActivityName=\".MainActivity\" /\u003e\n ...\n\u003c/activity\u003e\n```\n\n### Build a PendingIntent with a back stack\n\nTo start an activity that includes a back stack of activities, create an\ninstance of `TaskStackBuilder` and call\n[`addNextIntentWithParentStack()`](/reference/androidx/core/app/TaskStackBuilder#addNextIntentWithParentStack(android.content.Intent)),\npassing it the [`Intent`](/reference/android/content/Intent) for the\nactivity you want to start.\n\nAs long as you define the parent activity for each activity as described\nearlier, you can call\n[`getPendingIntent()`](/reference/androidx/core/app/TaskStackBuilder#getPendingIntent(int,int))\nto receive a `PendingIntent` that includes the entire back stack. \n\n### Kotlin\n\n```kotlin\n// Create an Intent for the activity you want to start.\nval resultIntent = Intent(this, ResultActivity::class.java)\n// Create the TaskStackBuilder.\nval resultPendingIntent: PendingIntent? = TaskStackBuilder.create(this).run {\n // Add the intent, which inflates the back stack.\n addNextIntentWithParentStack(resultIntent)\n // Get the PendingIntent containing the entire back stack.\n getPendingIntent(0,\n PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE)\n}\n```\n\n### Java\n\n```java\n// Create an Intent for the activity you want to start.\nIntent resultIntent = new Intent(this, ResultActivity.class);\n// Create the TaskStackBuilder and add the intent, which inflates the back\n// stack.\nTaskStackBuilder stackBuilder = TaskStackBuilder.create(this);\nstackBuilder.addNextIntentWithParentStack(resultIntent);\n// Get the PendingIntent containing the entire back stack.\nPendingIntent resultPendingIntent =\n stackBuilder.getPendingIntent(0,\n PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);\n```\n\nIf necessary, you can add arguments to `Intent` objects in the stack by calling\n[`TaskStackBuilder.editIntentAt()`](/reference/androidx/core/app/TaskStackBuilder#editIntentAt(int)).\nThis is sometimes necessary to ensure that an activity in the back stack\ndisplays meaningful data when the user navigates to it.\n\nThen you can pass the `PendingIntent` to the notification as usual: \n\n### Kotlin\n\n```kotlin\nval builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {\n setContentIntent(resultPendingIntent)\n ...\n}\nwith(NotificationManagerCompat.from(this)) {\n notify(NOTIFICATION_ID, builder.build())\n}\n```\n\n### Java\n\n```java\nNotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID);\nbuilder.setContentIntent(resultPendingIntent);\n...\nNotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);\nnotificationManager.notify(NOTIFICATION_ID, builder.build());\n```\n\nSet up a special activity PendingIntent\n---------------------------------------\n\nBecause a special activity that starts from a notification doesn't need a back\nstack, you can create the `PendingIntent` by calling\n[`getActivity()`](/reference/android/app/PendingIntent#getActivity(android.content.Context,%20int,%20android.content.Intent,%20int)).\nHowever, define the appropriate task options in the manifest.\n\n1. In your manifest, add the following attributes to the `\u003cactivity\u003e` element.\n\n\n [android:taskAffinity](/guide/topics/manifest/activity-element#aff)`=\"\"`\n :\n Combined with the\n [FLAG_ACTIVITY_NEW_TASK](/reference/android/content/Intent#FLAG_ACTIVITY_NEW_TASK)\n flag that you use in code, set this attribute blank to ensure\n this activity doesn't go into the app's default task. Any\n existing tasks that have the app's default affinity aren't\n affected.\n\n\n [android:excludeFromRecents](/guide/topics/manifest/activity-element#exclude)`=\"true\"`\n :\n Excludes the new task from the Recents screen so that the user\n can't accidentally navigate back to it.\n\n\n This is shown in the following example: \n\n ```xml\n \u003cactivity\n android:name=\".ResultActivity\"\n android:launchMode=\"singleTask\"\n android:taskAffinity=\"\"\n android:excludeFromRecents=\"true\"\u003e\n \u003c/activity\u003e\n ```\n2. Build and issue the notification:\n 1. Create an `Intent` that starts the [Activity](/reference/android/app/Activity).\n 2. Set the `Activity` to start in a new, empty task by calling [setFlags()](/reference/android/content/Intent#setFlags(int)) with the flags `FLAG_ACTIVITY_NEW_TASK` and [FLAG_ACTIVITY_CLEAR_TASK](/reference/android/content/Intent#FLAG_ACTIVITY_CLEAR_TASK).\n 3. Create a `PendingIntent` by calling `getActivity()`.\n\n\n This is shown in the following example: \n\n ### Kotlin\n\n ```kotlin\n val notifyIntent = Intent(this, ResultActivity::class.java).apply {\n flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK\n }\n val notifyPendingIntent = PendingIntent.getActivity(\n this, 0, notifyIntent,\n PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE\n )\n ```\n\n ### Java\n\n ```java\n Intent notifyIntent = new Intent(this, ResultActivity.class);\n // Set the Activity to start in a new, empty task.\n notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK\n | Intent.FLAG_ACTIVITY_CLEAR_TASK);\n // Create the PendingIntent.\n PendingIntent notifyPendingIntent = PendingIntent.getActivity(\n this, 0, notifyIntent,\n PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE\n );\n ```\n3. Pass the `PendingIntent` to the notification as usual: \n\n ### Kotlin\n\n ```kotlin\n val builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {\n setContentIntent(notifyPendingIntent)\n ...\n }\n with(NotificationManagerCompat.from(this)) {\n notify(NOTIFICATION_ID, builder.build())\n }\n ```\n\n ### Java\n\n ```java\n NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID);\n builder.setContentIntent(notifyPendingIntent);\n ...\n NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);\n notificationManager.notify(NOTIFICATION_ID, builder.build());\n ```\n\nFor more information about the various task options and how the back stack\nworks, see [Tasks and the back stack](/guide/components/activities/tasks-and-back-stack)."]]