با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
دستور غذا را حفظ کنید
این دستورالعمل نحوه حفظ مقادیر برای آیتمها در back stack را نشان میدهد. همچنین نحوه پیادهسازی یک NavEntryDecorator سفارشی را نشان میدهد.
چگونه کار میکند؟
برای استفاده از retain با nav 3، باید یک NavEntryDecorator تعریف و نصب کنید. این decorator یک RetainedValuesStoreRegistry مدیریت میکند که مقصدها را در یک RetainedValuesStore منحصر به فرد قرار میدهد.
دکوراتور پیادهسازیشده در این نمونه، مقادیر حفظشده را تا زمانی که آیتم در backstack باشد، نگه میدارد. اگر یک آیتم حذف و سپس دوباره اضافه شود، مقادیر حفظشده جدیدی دریافت خواهد کرد.
برای اطلاعات بیشتر در مورد retain، به مستندات retain ، RetainedValuesStore و RetainedValuesStoreRegistry مراجعه کنید.
برای اطلاعات بیشتر در مورد NavEntryDecorator، به مستندات رسمی مراجعه کنید.

کاوش
دستور پخت کامل را در گیتهاب ببینید.
arrow_forward package com.example.nav3recipes.retain
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.material3.Button
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.runtime.retain.RetainedValuesStore
import androidx.compose.runtime.retain.RetainedValuesStoreRegistry
import androidx.compose.runtime.retain.retain
import androidx.compose.runtime.retain.retainRetainedValuesStoreRegistry
import androidx.lifecycle.compose.dropUnlessResumed
import androidx.navigation3.runtime.NavEntry
import androidx.navigation3.runtime.NavEntryDecorator
import androidx.navigation3.runtime.NavKey
import androidx.navigation3.runtime.entryProvider
import androidx.navigation3.runtime.rememberNavBackStack
import androidx.navigation3.ui.NavDisplay
import com.example.nav3recipes.content.ContentBlue
import com.example.nav3recipes.content.ContentGreen
import com.example.nav3recipes.ui.setEdgeToEdgeConfig
import kotlinx.serialization.Serializable
@Serializable
private data object RouteA : NavKey
@Serializable
private data class RouteB(val id: Int) : NavKey
class RetainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
setEdgeToEdgeConfig()
super.onCreate(savedInstanceState)
setContent {
val backStack = rememberNavBackStack(RouteA)
NavDisplay(
backStack = backStack,
onBack = { backStack.removeLastOrNull() },
entryDecorators = listOf(
rememberRetainedValuesStoreNavEntryDecorator()
),
entryProvider = entryProvider {
entry<RouteA> {
ContentGreen("Nav3 with retain support") {
Text("Retained value: ${retainValue()}")
Button(onClick = dropUnlessResumed {
backStack.add(RouteB(1))
}) {
Text("Click to navigate")
}
}
}
entry<RouteB> { key ->
ContentBlue("Route id: ${key.id}") {
Text("Retained value: ${retainValue()}")
Button(onClick = dropUnlessResumed {
backStack.add(RouteB(key.id + 1))
}) {
Text("Click to navigate")
}
}
}
}
)
}
}
@Composable
private fun retainValue() = retain { "Retained Value ${retainCount++}" }
private companion object {
// Counter to track how many values have been retained
// Resets on process death.
var retainCount = 0
}
}
/**
* Returns a [RetainedValuesStoreNavEntryDecorator] that is remembered across recompositions backed
* by [registry].
*
* The underlying storage is controlled by the provided [registry]. By default, a new
* [RetainedValuesStoreRegistry] is retained at this point in the composition hierarchy and will be
* destroyed when the composition is permanently discarded or when the returned decorator is removed
* from the composition hierarchy. If you need the backing storage of this decorator to have a
* different lifespan, you can manually manage and provide a [RetainedValuesStoreRegistry] with the
* intended lifespan.
*
* @param registry The underlying [RetainedValuesStoreRegistry] used to provide
* [RetainedValuesStore] instances to [NavEntries][NavEntry]. This instance should be retained to
* properly survive destruction and recreation scenarios.
*/
@Composable
fun <T : Any> rememberRetainedValuesStoreNavEntryDecorator(
registry: RetainedValuesStoreRegistry = retainRetainedValuesStoreRegistry()
): RetainedValuesStoreNavEntryDecorator<T> {
return remember(registry) {
RetainedValuesStoreNavEntryDecorator(registry)
}
}
/**
* Provides the content of each [NavEntry] with a dedicated [RetainedValuesStore] so that each nav
* entry may retain its own values.
*
* @param registry The underlying [RetainedValuesStoreRegistry] used to provide
* [RetainedValuesStore] instances to [NavEntries][NavEntry]. This instance should be retained to
* properly survive destruction and recreation scenarios.
*/
class RetainedValuesStoreNavEntryDecorator<T : Any>(
registry: RetainedValuesStoreRegistry,
) : NavEntryDecorator<T>(
onPop = { key ->
registry.clearChild(key)
},
decorate = { entry ->
registry.LocalRetainedValuesStoreProvider(entry.contentKey) { entry.Content() }
},
)
محتوا و نمونه کدها در این صفحه مشمول پروانههای توصیفشده در پروانه محتوا هستند. جاوا و OpenJDK علامتهای تجاری یا علامتهای تجاری ثبتشده Oracle و/یا وابستههای آن هستند.
تاریخ آخرین بهروزرسانی 2026-05-09 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","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"]],["تاریخ آخرین بهروزرسانی 2026-05-09 بهوقت ساعت هماهنگ جهانی."],[],[]]