सामग्री की सूची-ज़्यादा जानकारी वाली रेसिपी
इस रेसिपी में, Material 3 Adaptive लाइब्रेरी से ListDetailSceneStrategy का इस्तेमाल करके, अडैप्टिव लिस्ट-डिटेल लेआउट बनाने का तरीका बताया गया है. स्क्रीन की चौड़ाई के हिसाब से, यह लेआउट अपने-आप अडजस्ट हो जाता है. इससे एक, दो या तीन पैन दिखते हैं.
यह कैसे काम करता है
इस उदाहरण में तीन डेस्टिनेशन दिए गए हैं: ConversationList, ConversationDetail, और Profile.
ListDetailSceneStrategy
इस रेसिपी की मुख्य बात rememberListDetailSceneStrategy है. यह अडैप्टिव लेआउट के लिए लॉजिक उपलब्ध कराता है.
-
पैन की भूमिकाएं: मेटाडेटा का इस्तेमाल करके, हर डेस्टिनेशन को एक भूमिका असाइन की जाती है:
ListDetailSceneStrategy.listPane(): मुख्य (सूची) कॉन्टेंट के लिए. यह पैनल हमेशा दिखता है. जब कोई जानकारी वाला कॉन्टेंट नहीं चुना जाता है, तब जानकारी वाले पैनल में दिखाने के लिए एक प्लेसहोल्डर दिया जा सकता है.ListDetailSceneStrategy.detailPane(): सेकंडरी (ज़्यादा जानकारी) कॉन्टेंट के लिए.ListDetailSceneStrategy.extraPane(): तीसरे ऑडियाे ट्रैक के लिए.
-
अडैप्टिव लेआउट:
ListDetailSceneStrategyलेआउट को अपने-आप मैनेज करता है. छोटी स्क्रीन पर, एक बार में सिर्फ़ एक पैनल दिखता है. बड़ी स्क्रीन पर, सूची और जानकारी वाले पैनल साथ-साथ दिखेंगे. बहुत चौड़ी स्क्रीन पर, यह तीनों पैन दिखा सकता है: सूची, जानकारी, और अतिरिक्त जानकारी. -
नेविगेशन: पैन के बीच नेविगेशन को मैनेज करने के लिए, पिछली गतिविधियों से डेस्टिनेशन को जोड़ा और हटाया जाता है.
ListDetailSceneStrategyबैक स्टैक को मॉनिटर करता है और लेआउट को उसके हिसाब से अडजस्ट करता है.
package com.example.nav3recipes.material.listdetail /* * 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. */ 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.material3.adaptive.ExperimentalMaterial3AdaptiveApi import androidx.compose.material3.adaptive.currentWindowAdaptiveInfoV2 import androidx.compose.material3.adaptive.layout.calculatePaneScaffoldDirective import androidx.compose.material3.adaptive.navigation3.ListDetailSceneStrategy import androidx.compose.material3.adaptive.navigation3.rememberListDetailSceneStrategy import androidx.compose.runtime.remember import androidx.compose.ui.Alignment import androidx.compose.ui.unit.dp import androidx.lifecycle.compose.dropUnlessResumed 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.content.ContentRed import com.example.nav3recipes.content.ContentYellow import com.example.nav3recipes.ui.setEdgeToEdgeConfig import kotlinx.serialization.Serializable @Serializable private object ConversationList : NavKey @Serializable private data class ConversationDetail(val id: String) : NavKey @Serializable private data object Profile : NavKey class MaterialListDetailActivity : ComponentActivity() { @OptIn(ExperimentalMaterial3AdaptiveApi::class) override fun onCreate(savedInstanceState: Bundle?) { setEdgeToEdgeConfig() super.onCreate(savedInstanceState) setContent { val backStack = rememberNavBackStack(ConversationList) // Override the defaults so that there isn't a horizontal space between the panes. // See b/418201867 val windowAdaptiveInfo = currentWindowAdaptiveInfoV2() val directive = remember(windowAdaptiveInfo) { calculatePaneScaffoldDirective(windowAdaptiveInfo) .copy(horizontalPartitionSpacerSize = 0.dp) } val listDetailStrategy = rememberListDetailSceneStrategy<NavKey>(directive = directive) NavDisplay( backStack = backStack, onBack = { backStack.removeLastOrNull() }, sceneStrategies = listOf(listDetailStrategy), entryProvider = entryProvider { entry<ConversationList>( metadata = ListDetailSceneStrategy.listPane( detailPlaceholder = { ContentYellow("Choose a conversation from the list") } ) ) { ContentRed("Welcome to Nav3") { Button(onClick = dropUnlessResumed { backStack.add(ConversationDetail("ABC")) }) { Text("View conversation") } } } entry<ConversationDetail>( metadata = ListDetailSceneStrategy.detailPane() ) { conversation -> ContentBlue("Conversation ${conversation.id} ") { Column(horizontalAlignment = Alignment.CenterHorizontally) { Button(onClick = dropUnlessResumed { backStack.add(Profile) }) { Text("View profile") } } } } entry<Profile>( metadata = ListDetailSceneStrategy.extraPane() ) { ContentGreen("Profile") } } ) } } }