57 questions
1
vote
1
answer
329
views
Why do we need another methods to goes edge-to-edge in Android while window.setFlags to FLAG_LAYOUT_NO_LIMITS always do the work
To ensure the modern look for my application, I want to make it goes edge-to-edge.
Through some research I know that we can achieve it in 3 steps:
Make the App's layout spreads all the screen.
To do ...
10
votes
3
answers
6k
views
AndroidX's Edge to Edge shows an Action Bar - How to hide it?
I've implemented Edge to Edge in my Android app, I've set the Status/Navigation bars to be transparent, and it works well. However suddenly an ActionBar appeared on top of my screen, even though I've ...
2
votes
0
answers
959
views
Status/Navigation Bar not Displayed correctly on Startup - Edge To Edge
I've just replaced a deprecated accompanist SysteUiController with an Activity Component's Edge to Edge. And it works just fine. However I've noticed that during a startup status/navigation bars don't ...
1
vote
0
answers
116
views
How to observe systemBars appearance in compose
I'm trying to listen for the appearance of the systemBars, so i can hide them after a finite amount of time (to go back to the immersive view), I'm able to hide & show the system bars but i can't ...
3
votes
2
answers
2k
views
PaddingValues except bottomPadding in Jetpack Compose
Issue
I'm looking for a way to alter PaddingValues, so that they don't include any BottomPadding.
My current Implementation looks like this, but here i need to pass LayoutDirection, which feels really ...
1
vote
1
answer
4k
views
How to implement system bars insets with edge-to-edge gesture navigation?
I'm trying to add the edge-to-edge stuff for the gesture navigation bar to the Tip Time app from Google. I added the transparent navigationBarColor XML tag to themes.xml as well as the following code ...
32
votes
7
answers
17k
views
Compose: How to have ime padding and Scaffold padding with edge-to-edge and windowSoftInputMode is adjustResize
The androidx.compose.material3.Scaffold padding wrongly adds the Navigation Bar padding even when soft keyboard is open the IME padding is added, resulting in a double amount of Navigation Bar padding ...