Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
15 views

The target activity uses singleTop as launchMode. When it is launched from another application with the following code, it shows Fragment A, then user switches to fragment B. Then user switches to ...
Dev_Cob's user avatar
  • 71
0 votes
0 answers
22 views

I've successfully implemented jetpack component and that is navigation controller. I'm encoutering an issue where fragments are recreated when navigating back to previoud fragment. Does anyone know ...
Harshil Kakadiya's user avatar
3 votes
0 answers
51 views

I need an implementation that follows this navigation pattern. For example, there are screens a, b, c, and d. The navigation sequence is a > b > d > c > b > d. When we are on screen d ...
tereshkevich's user avatar
0 votes
0 answers
36 views

I am working on an android application and I spent a long time implementing a NavController with my BottomNavigationView. It works properly, I can transition between the different buttons but the ...
Matthias Sunbreeze's user avatar
0 votes
1 answer
487 views

I'm utilizing the DataStore value isLanguageSelected to determine whether to display the HomeScreen() composable or the LanguageScreen(). While the functionality works as intended, I'm encountering an ...
user avatar
0 votes
1 answer
75 views

On running the code, there are no errors. After clicking on run button it is showing that app is launching on device connected but few seconds later, once it is installed on device connected, I can ...
Manswi Nikam's user avatar
0 votes
1 answer
292 views

I'm currently trying to implement some sort of account profile where the current user can do some modification to their profile. I already added the profile syncing on the server side, but I'm ...
rminaj's user avatar
  • 605
0 votes
1 answer
55 views

I have a DialogFragment with this code in order to animate when it exits: override fun dismiss() { dismissListener?.invoke() exitAnimation?.let { val animation = ...
htafoya's user avatar
  • 19.4k
3 votes
4 answers
5k views

I am trying to implement navigation in jetpack compose but I have added the following dependency as described in google docs implementation "androidx.navigation:navigation-compose:2.7.3" but ...
M Baig's user avatar
  • 219
2 votes
0 answers
483 views

In short, I'd like to do this: void nav(NavController navController, Uri deepLink, Bundle args) { navController.navigate(deepLink, args); } However, androidx.navigation.NavController only has ...
Jordi's user avatar
  • 5,946
0 votes
0 answers
678 views

I am using Navigation in Compose. When user moves from one screen to another the screen flickers. The flickering appears to be due to the screen being rendered multiple times. I am not able to ...
Nazir's user avatar
  • 253
0 votes
1 answer
335 views

Thanks to a bottomNavigationView, I use NavController to navigate between 4 different fragments. In one of these fragments (ChallengesFragment) I have an inner_fragment (nav_host_fragment_challenges) ...
Thewhyap's user avatar
0 votes
1 answer
107 views

I'm using single activity architecture and have 3 fragments (Fragment A, Fragment B and Fragment C). Click on button in Fragment A takes to Fragment B and click on button in Fragment B takes to ...
ChanduGudimetla's user avatar
1 vote
0 answers
125 views

I'm trying to create something for the Android app using Compose and navigation, to make it possible to continue with the last screen I was showing to the user if an app crashed or been killed by the ...
Daviti Gogochishvili's user avatar
1 vote
2 answers
274 views

So I'm creating my first Android App and I'm already using Jetpack Navigation. I also am implementing my own custom layouts with their own custom toolbars. However, I wanted to take advantage of the ...
Matt Mahoney's user avatar