با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
دستور العمل ناوبری شرطی
این دستورالعمل نحوه پیادهسازی ناوبری مشروط را نشان میدهد، که در آن مقاصد خاص فقط در صورت برآورده شدن یک شرط (در این مورد، اگر کاربر وارد سیستم شده باشد) قابل دسترسی هستند.
چگونه کار میکند؟
این مثال یک مقصد Profile دارد که نیاز به ورود کاربر دارد. اگر کاربر وارد سیستم نشده باشد و سعی کند به Profile برود، به صفحه Login هدایت میشود. پس از ورود موفقیتآمیز، به طور خودکار به صفحه Profile هدایت میشود.
AppBackStack
هسته اصلی این دستورالعمل، کلاس سفارشی AppBackStack است که منطق ناوبری شرطی را کپسولهسازی میکند.
رابط RequiresLogin : یک رابط نشانگر، RequiresLogin ، برای شناسایی مقصدهایی که نیاز به ورود کاربر دارند، استفاده میشود. مقصد Profile این رابط را پیادهسازی میکند.
هدایت به ورود : وقتی تابع add با مقصدی که RequiresLogin را پیادهسازی میکند فراخوانی میشود و کاربر وارد سیستم نشده است، AppBackStack مقصد مورد نظر را ذخیره کرده و به جای آن مسیر Login به back stack اضافه میکند.
مدیریت ورود : وقتی تابع login فراخوانی میشود، وضعیت کاربر را به «وارد شده» تنظیم میکند. اگر مقصد ذخیرهشدهای وجود داشته باشد که کاربر سعی در دسترسی به آن داشته باشد، آن مقصد را به پشته پشتی اضافه کرده و صفحه Login حذف میکند.
مدیریت خروج : وقتی تابع logout میشود، وضعیت کاربر را به خروج از سیستم تنظیم میکند و هر مقصدی را از پشته پشتی که نیاز به ورود کاربر دارد، حذف میکند.
این رویکرد با متمرکز کردن منطق در یک پیادهسازی سفارشی back stack، روشی تمیز برای مدیریت ناوبری شرطی ارائه میدهد.

کاوش
دستور پخت کامل را در گیتهاب ببینید.
arrow_forward /*
* Copyright 2025 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.nav3recipes.conditional
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.layout.Column
import androidx.compose.material3.Button
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.setValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.saveable.rememberSaveable
import androidx.compose.runtime.saveable.rememberSerializable
import androidx.lifecycle.compose.dropUnlessResumed
import androidx.navigation3.runtime.NavBackStack
import androidx.navigation3.runtime.NavKey
import androidx.navigation3.runtime.entryProvider
import androidx.navigation3.runtime.serialization.NavBackStackSerializer
import androidx.navigation3.runtime.serialization.NavKeySerializer
import androidx.navigation3.ui.NavDisplay
import com.example.nav3recipes.content.ContentBlue
import com.example.nav3recipes.content.ContentGreen
import com.example.nav3recipes.content.ContentYellow
import kotlinx.serialization.Serializable
/**
* Class for representing navigation keys in the app.
*
* Note: We use a sealed class because KotlinX Serialization handles
* polymorphic serialization of sealed classes automatically.
*
* @param requiresLogin - true if the navigation key requires that the user is logged in
* to navigate to it
*/
@Serializable
sealed class ConditionalNavKey(val requiresLogin: Boolean = false) : NavKey
/**
* Key representing home screen
*/
@Serializable
private data object Home : ConditionalNavKey()
/**
* Key representing profile screen that is only accessible once the user has logged in
*/
@Serializable
private data object Profile : ConditionalNavKey(requiresLogin = true)
/**
* Key representing login screen
*
* @param redirectToKey - navigation key to redirect to after successful login
*/
@Serializable
private data class Login(
val redirectToKey: ConditionalNavKey? = null
) : ConditionalNavKey()
class ConditionalActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
val backStack = rememberNavBackStack<ConditionalNavKey>(Home)
var isLoggedIn by rememberSaveable {
mutableStateOf(false)
}
val navigator = remember {
Navigator(
backStack = backStack,
onNavigateToRestrictedKey = { redirectToKey -> Login(redirectToKey) },
isLoggedIn = { isLoggedIn }
)
}
NavDisplay(
backStack = backStack,
onBack = { navigator.goBack() },
entryProvider = entryProvider {
entry<Home> {
ContentGreen("Welcome to Nav3. Logged in? ${isLoggedIn}") {
Column {
Button(onClick = dropUnlessResumed { navigator.navigate(Profile) }) {
Text("Profile")
}
Button(onClick = dropUnlessResumed { navigator.navigate(Login()) }) {
Text("Login")
}
}
}
}
entry<Profile> {
ContentBlue("Profile screen (only accessible once logged in)") {
Button(onClick = dropUnlessResumed {
isLoggedIn = false
navigator.navigate(Home)
}) {
Text("Logout")
}
}
}
entry<Login> { key ->
ContentYellow("Login screen. Logged in? $isLoggedIn") {
Button(onClick = dropUnlessResumed {
isLoggedIn = true
key.redirectToKey?.let { targetKey ->
backStack.remove(key)
navigator.navigate(targetKey)
}
}) {
Text("Login")
}
}
}
}
)
}
}
}
// An overload of `rememberNavBackStack` that returns a subtype of `NavKey`.
// See https://issuetracker.google.com/issues/463382671 for a discussion of this function
@Composable
fun <T : NavKey> rememberNavBackStack(vararg elements: T): NavBackStack<T> {
return rememberSerializable(
serializer = NavBackStackSerializer(elementSerializer = NavKeySerializer())
) {
NavBackStack(*elements)
}
}/*
* Copyright 2025 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.nav3recipes.conditional
import androidx.navigation3.runtime.NavBackStack
/**
* Provides navigation events with built-in support for conditional access. If the user attempts to
* navigate to a [ConditionalNavKey] that requires login ([ConditionalNavKey.requiresLogin] is true)
* but is not currently logged in, the Navigator will redirect the user to a login key.
*
* @property backStack The back stack that is modified by this class
* @property onNavigateToRestrictedKey A lambda that is called when the user attempts to navigate
* to a key that requires login. This should return the key that represents the login screen. The
* user's target key is supplied as a parameter so that after successful login the user can be
* redirected to their target destination.
* @property isLoggedIn A lambda that returns whether the user is logged in.
*/
class Navigator(
private val backStack: NavBackStack<ConditionalNavKey>,
private val onNavigateToRestrictedKey: (targetKey: ConditionalNavKey?) -> ConditionalNavKey,
private val isLoggedIn: () -> Boolean,
) {
fun navigate(key: ConditionalNavKey) {
if (key.requiresLogin && !isLoggedIn()) {
val loginKey = onNavigateToRestrictedKey(key)
backStack.add(loginKey)
} else {
backStack.add(key)
}
}
fun goBack() = backStack.removeLastOrNull()
}
محتوا و نمونه کدها در این صفحه مشمول پروانههای توصیفشده در پروانه محتوا هستند. جاوا و OpenJDK علامتهای تجاری یا علامتهای تجاری ثبتشده Oracle و/یا وابستههای آن هستند.
تاریخ آخرین بهروزرسانی 2026-03-03 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","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-03-03 بهوقت ساعت هماهنگ جهانی."],[],[]]