একটি বিজ্ঞপ্তি থেকে একটি কার্যকলাপ শুরু করুন
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
আপনি যখন একটি বিজ্ঞপ্তি থেকে একটি কার্যকলাপ শুরু করেন, আপনাকে অবশ্যই ব্যবহারকারীর প্রত্যাশিত নেভিগেশন অভিজ্ঞতা সংরক্ষণ করতে হবে। ব্যাক বোতামে আলতো চাপলে অবশ্যই ব্যবহারকারীকে অ্যাপের স্বাভাবিক কাজের প্রবাহের মাধ্যমে হোম স্ক্রিনে ফিরিয়ে আনতে হবে এবং সাম্প্রতিক স্ক্রিনটি খুললে কার্যকলাপটিকে একটি পৃথক কাজ হিসাবে দেখাতে হবে। এই নেভিগেশন অভিজ্ঞতা সংরক্ষণ করতে, একটি নতুন টাস্কে কার্যকলাপ শুরু করুন।
আপনার বিজ্ঞপ্তির জন্য ট্যাপ আচরণ সেট করার প্রাথমিক পদ্ধতিটি একটি মৌলিক বিজ্ঞপ্তি তৈরি করুন এ বর্ণনা করা হয়েছে। এই পৃষ্ঠাটি বর্ণনা করে কিভাবে আপনার বিজ্ঞপ্তির কর্মের জন্য একটি PendingIntent
সেট আপ করতে হয় যাতে এটি একটি নতুন টাস্ক এবং ব্যাক স্ট্যাক তৈরি করে। আপনি এটি কীভাবে করবেন তা নির্ভর করে আপনি কোন ধরনের কার্যকলাপ শুরু করছেন তার উপর:
- নিয়মিত কার্যকলাপ
- এটি এমন একটি কার্যকলাপ যা আপনার অ্যাপের স্বাভাবিক UX প্রবাহের অংশ হিসেবে বিদ্যমান। ব্যবহারকারী যখন বিজ্ঞপ্তি থেকে অ্যাক্টিভিটিতে আসে, তখন নতুন টাস্কে অবশ্যই একটি সম্পূর্ণ ব্যাক স্ট্যাক অন্তর্ভুক্ত করতে হবে, ব্যবহারকারীকে অ্যাপের ক্রমানুসারে নেভিগেট করতে ব্যাক বোতামে ট্যাপ করতে দেয়।
- বিশেষ কার্যকলাপ
- ব্যবহারকারী শুধুমাত্র এই কার্যকলাপটি দেখেন যদি এটি একটি বিজ্ঞপ্তি থেকে শুরু হয়৷ এক অর্থে, এই ক্রিয়াকলাপটি বিজ্ঞপ্তি UI কে প্রসারিত করে এমন তথ্য প্রদান করে যা বিজ্ঞপ্তিতে প্রদর্শন করা কঠিন। এই কার্যকলাপ একটি ব্যাক স্ট্যাক প্রয়োজন নেই.
একটি নিয়মিত কার্যকলাপ PendingIntent সেট আপ করুন
আপনার বিজ্ঞপ্তি থেকে একটি নিয়মিত কার্যকলাপ শুরু করতে, TaskStackBuilder
ব্যবহার করে PendingIntent
সেট আপ করুন যাতে এটি নিম্নরূপ একটি নতুন ব্যাক স্ট্যাক তৈরি করে।
আপনার অ্যাপের কার্যকলাপের শ্রেণিবিন্যাস সংজ্ঞায়িত করুন
আপনার অ্যাপ্লিকেশান ম্যানিফেস্ট ফাইলের প্রতিটি <activity>
উপাদানে android:parentActivityName
অ্যাট্রিবিউট যোগ করে আপনার কার্যকলাপের জন্য প্রাকৃতিক শ্রেণিবিন্যাস সংজ্ঞায়িত করুন। নিম্নলিখিত উদাহরণ দেখুন:
<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 তৈরি করুন
ক্রিয়াকলাপগুলির একটি ব্যাক স্ট্যাক অন্তর্ভুক্ত এমন একটি ক্রিয়াকলাপ শুরু করতে, TaskStackBuilder
এর একটি উদাহরণ তৈরি করুন এবং addNextIntentWithParentStack()
কল করুন, আপনি যে কার্যকলাপটি শুরু করতে চান তার Intent
এটি পাস করুন৷
যতক্ষণ আপনি পূর্বে বর্ণিত প্রতিটি কার্যকলাপের জন্য অভিভাবক কার্যকলাপ সংজ্ঞায়িত করেন, আপনি একটি PendingIntent
পেতে getPendingIntent()
কল করতে পারেন যাতে পুরো ব্যাক স্ট্যাক অন্তর্ভুক্ত থাকে।
কোটলিন
// 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)
}
জাভা
// 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);
প্রয়োজনে, আপনি TaskStackBuilder.editIntentAt()
কল করে স্ট্যাকের Intent
অবজেক্টে আর্গুমেন্ট যোগ করতে পারেন। ব্যবহারকারী যখন নেভিগেট করে তখন ব্যাক স্ট্যাকের একটি কার্যকলাপ অর্থপূর্ণ ডেটা প্রদর্শন করে তা নিশ্চিত করার জন্য এটি কখনও কখনও প্রয়োজনীয়।
তারপরে আপনি যথারীতি বিজ্ঞপ্তিতে PendingIntent
পাস করতে পারেন:
কোটলিন
val builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {
setContentIntent(resultPendingIntent)
...
}
with(NotificationManagerCompat.from(this)) {
notify(NOTIFICATION_ID, builder.build())
}
জাভা
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID);
builder.setContentIntent(resultPendingIntent);
...
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
notificationManager.notify(NOTIFICATION_ID, builder.build());
একটি বিশেষ কার্যকলাপ PendingIntent সেট আপ করুন
যেহেতু একটি বিশেষ ক্রিয়াকলাপ যা একটি বিজ্ঞপ্তি থেকে শুরু হয় তার জন্য একটি ব্যাক স্ট্যাকের প্রয়োজন হয় না, আপনি getActivity()
কল করে PendingIntent
তৈরি করতে পারেন। যাইহোক, ম্যানিফেস্টে উপযুক্ত টাস্ক বিকল্পগুলি সংজ্ঞায়িত করুন৷
- আপনার ম্যানিফেস্টে,
<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
শুরু করে। - ফ্ল্যাগ
FLAG_ACTIVITY_NEW_TASK
এবং FLAG_ACTIVITY_CLEAR_TASK
সহ setFlags()
কল করে একটি নতুন, খালি কাজ শুরু করতে Activity
সেট করুন। -
getActivity()
কল করে একটি PendingIntent
তৈরি করুন।
এটি নিম্নলিখিত উদাহরণে দেখানো হয়েছে:
কোটলিন
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
)
জাভা
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
পাস করুন: কোটলিন
val builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {
setContentIntent(notifyPendingIntent)
...
}
with(NotificationManagerCompat.from(this)) {
notify(NOTIFICATION_ID, builder.build())
}
জাভা
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID);
builder.setContentIntent(notifyPendingIntent);
...
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
notificationManager.notify(NOTIFICATION_ID, builder.build());
বিভিন্ন টাস্ক অপশন এবং ব্যাক স্ট্যাক কীভাবে কাজ করে সে সম্পর্কে আরও তথ্যের জন্য, টাস্ক এবং ব্যাক স্ট্যাক দেখুন।
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 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-29 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)."]]