English 中文(简体)
在前往主机目的地时, 是否有办法让对话目的地置身于后堆?
原标题:Is there a way to have dialog destinations in back stack when navigating to hosted destination in Compose?
The bounty expires tomorrow. Answers to this question are eligible for a +50 reputation bounty. Arslan Shoukat wants to draw more attention to this question.

我有一个项目,在Compose nav图中,我综合了托管目的地(屏幕)和对话目的地(对话点)。

样本 nav 图 :

NavHost(
    navController = navController,
    startDestination = "PostListScreen",
) {
    composable("PostListScreen") { PostListScreen() }
    dialog("EditPostDialog") { EditPostDialog() }
    dialog("SelectPhotosDialog") { SelectPhotosDialog() }
    composable("CameraScreen") { CameraScreen() }
}

我正从 PostListScreen 前往 Edit>EditPostDialog ,然后到 CameraScreen 。当我从 CameraScreen 返回时,我用一些图像, EditPostDialog 返回时,这个pops Edit>EdistPostDialog 已经不存在。

是否有办法将对话点和主机目的地都放在导航堆叠中, 这样这个问题就不会发生。 我知道这是根据 rel="nofollow noreferrer>>>docs 的预期行为, 但我在项目中有不同的要求。

注:我已经尝试在正常的托管目的地内主持对话,但这也行不通。

问题回答

我认为,你提到的在纳沃霍斯特宣布对话会很难推翻它的行为,所以你为什么不在PostListScreen () 中创建它, 并添加一个状态, 表明该对话框是否应该可见, 并用这个方式包起来 :

if(shouldBeVisible){
   BasicAlertDialog()
}

and shouldBeVisible is just a remember{mutableStateOf(false)} and you change it for example when you want to navigate to the dialog so instead you just show it in the same screen then anvigate to the CameraScreen from the dialog like that you will be also able to decide if the dialog should be visible or not based on the data you retuned with from CameraScreen





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签