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

When my Activity runs in landscape orientation in Immersive mode, no status bar is visible. (This is the expected behavior). But when the Recent Apps button is pressed, the status bar on the top of ...
A.G.'s user avatar
  • 2,247
1 vote
0 answers
113 views

I work on Android TV app using Jetpack Compose. I follow the Guide and I want to make a page with multiple immersive views. I also want to be able to change focus from one to other immersive view and ...
llama_glama's user avatar
2 votes
1 answer
5k views

I'm learning Jetpack Compose with Kotlin, and trying to make an app with the option to enable fullscreen mode in Android, only showing the status bar after swiping it down. I've searched for examples ...
rong holl's user avatar
0 votes
1 answer
377 views

I'm a newbie and created a game on native Android with Kotlin (a big mistake). https://play.google.com/store/apps/details?id=nochi.words Since I believed it, I have had nothing but problems. And the ...
stack99's user avatar
1 vote
0 answers
216 views

When I click on an item in Flutter I want the status bar to be hidden so that the item I've clicked on is displayed full-screen without any other visual elements. However, when I try to do this, the ...
Co-7's user avatar
  • 200
0 votes
3 answers
516 views

I have an activity that's supposed to host a web view in fullscreen with the status and navigation bars fully immersive as I don't want to set a color for the status bar. I tried multiple snippets ...
Claude Hangui's user avatar
1 vote
1 answer
109 views

i have a flutter app using SystemUiMode.immersive, but when i use my keyboard and discards it, the navbar (and status bar) stays on the app. I have code that removes them if you touch the screen, but ...
binyamin alony's user avatar
0 votes
1 answer
3k views

I want to create Immersive Fullscreen application with React Native (Expo). After many hour's of research online, I only got solutions which are applicable for bare react native project only which ...
Takla Seth's user avatar
1 vote
0 answers
314 views

The image above shows how I enabled the immersive mode. This is how the AppBar looks without any modification. And this is how it looks like, when I set the toolbarHeight to 10. Here is the code ...
Zeynep's user avatar
  • 11
1 vote
0 answers
111 views

mContext.getWindow().getDecorView().setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View....
neobie's user avatar
  • 2,920
2 votes
1 answer
157 views

I need to use immersive mode in my project, so I put this in my AdroidLauncher.java: config.useImmersiveMode = true; But I still have a black bar on top of the screen (as on screenshots below). How ...
Viktor's user avatar
  • 21
1 vote
0 answers
287 views

I'm trying to have an immersive view implemented for a dialogfragment, and not having an expected behavior happening. Here's part of my code in onViewCreated(view, Bundle savedInstanceState) getDialog(...
Dominic's user avatar
  • 11
3 votes
0 answers
1k views

I'm using Compose and I want to have a fullscreen composable while also modifying the swipe behavior of the system bars. I'm using the Google Accompanist SystemUiController to hide and show the system ...
flauschtrud's user avatar
3 votes
2 answers
3k views

I know it sounds duplicate but it is not. I have read a whole article about implementing what I want at android studio official site but no help. My goal is to draw behind the system bars like this ...
YoloWex's user avatar
  • 159
2 votes
1 answer
614 views

I use this code to to hide the navigation bar: View root = findViewById(android.R.id.content); root.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN); getWindow().addFlags(WindowManager....
A.G.'s user avatar
  • 2,247
0 votes
1 answer
2k views

I'm trying to have a full screen DialogFragment with the ability to show / hide status and navigation bars when tapping the screen. Here is the DialogFragment class FullScreenFragment : DialogFragment(...
Renjith's user avatar
  • 3,657
1 vote
1 answer
5k views

Is there an Android shell command that can get the current status of Immersive Mode (i.e. immersive.full, immersive.status, immersive.navigation, or immersive.off)? Immersive mode can be set via the ...
ETL's user avatar
  • 295
5 votes
2 answers
3k views

This happens for me on Android 12 with flutter 2.5.3 When using SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky); The top status bar is hidden but the space that it was in is ...
Jari's user avatar
  • 332
1 vote
0 answers
73 views

I have an exotic task and for it I need to know when the immersive bottom navbar is displayed and when it is hidden. Is there any callback for this in the Android SDK?
ByMedion's user avatar
0 votes
1 answer
45 views

Customer request: I want to create smooth transition between all activity by moving 2 png elements of my background (customer request). In detail: I have a right element that should move to the left ...
Adrien Jouve's user avatar
0 votes
3 answers
796 views

Immersive(-sticky) mode cannot hide navigation bar completely. When I tap and show popup menu, the navigation bar (with transparent background) is raised like a zombie. This phenomena is same both on ...
hata's user avatar
  • 12.6k
3 votes
1 answer
1k views

I want to keep immersive mode all over the app on Android using Xamarin.forms. I have read few blogs and posts. This one works but only until I press an input text box or I scroll over the screen. I ...
David Zomada's user avatar
1 vote
2 answers
4k views

I have upgraded Compose for my app from 1.0.0-alpha10 to current latest of 1.0.0-beta03 I want to layout my activity contents edge to edge, underneath system bars. Among other things I have used the ...
Madushan's user avatar
  • 7,478
1 vote
0 answers
348 views

While running automated UI tests with multiple workers I would like to execute the following script: beforeAll(async () => { if (device.getPlatform() === 'android') { console.log('*** ...
Zoltan Szokodi's user avatar
1 vote
1 answer
323 views

I'm showing Google Map on my application. I want it to look immersive so I added this line. WindowCompat.setDecorFitsSystemWindows(window, true) There is nothing wrong on portrait mode with ...
yasincidem's user avatar
6 votes
0 answers
3k views

I followed the Android dev tutorial and got full screen sticky immersive mode working. This makes the status bar and navigation bar hidden until the user swipes up from the bottom or down from the top,...
Lifes's user avatar
  • 1,327
0 votes
1 answer
175 views

In a certain activity in my app I am hiding the navigation bar since that activity is full screen. To hide the navigation bar I am using the following code: private void hideSystemUI() { /...
Kaiser's user avatar
  • 606
3 votes
0 answers
568 views

How can one toggle between immersive to non-immersive mode without layout being re-calculated and thus experience a bounce effect? Here's the relevant code that I'm using to toggle between the states: ...
idish's user avatar
  • 3,268
0 votes
0 answers
106 views

I am trying to appny immersive mode in one of my fragment, which in managed by a viewPager. My fragment looks like: public class MapFragment extends Fragment { private MapView mMapView; private ...
BaRud's user avatar
  • 3,260
0 votes
1 answer
81 views

I use this code to hide navigation bar: this.window.decorView.systemUiVisibility = ( View.SYSTEM_UI_FLAG_HIDE_NAVIGATION or View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) But ...
Pranciskus's user avatar
0 votes
1 answer
64 views

I need to completely remove the actionbarr and navigationbar from my app. So I stay in fullscreen without the possibility to swipe so I get the navigationbar back. I have now this code in my onreate ...
acroscene's user avatar
  • 1,067
1 vote
2 answers
953 views

I've successfully set the app in the immersive mode because I want to hide the status bar (on the top screen) and the navigation bar (on the bottom screen). The problem is that when the activity ...
user.kt's user avatar
  • 197
-1 votes
1 answer
704 views

It is possible to hide the bar with the clock completely ? I mean complete full screen. I tried to use the IMMERSIVE_STICKY flag with the onWindowFocusChanged() method but the bar pulls down when I ...
aminakoy's user avatar
  • 423
2 votes
1 answer
6k views

I have been racking my brain a week now trying things left and right and I cannot seem to find the answer. I might actually have more questions. We have an application that uses a Unity view in one ...
MadDim's user avatar
  • 553
7 votes
3 answers
2k views

I have a videoview on my app and Im using gogole as a reference to make the video player full screen: https://developer.android.com/training/system-ui/immersive#java I was following the instruccion ...
Pedro 's user avatar
  • 1,450
1 vote
0 answers
563 views

I have a phone with a notch. When I want my activity to go full-screen, the notch area is inaccessible, it becomes black. Navigation bar goes away normally. I have seen other apps also cannot ...
q126y's user avatar
  • 1,691
2 votes
1 answer
1k views

I am developing a single-use device with Android. HW has a full keyboard but no main keys (Back, Home, Overview). Some of the app should be working in immersive mode and they contain EditText fields. ...
JoonBLUE's user avatar
5 votes
2 answers
3k views

I'm trying to achieve a full-screen application, where the user doesn't have any access to the status- & navigation-bar. Preferably I would want them to be removed completely, but from what I've ...
Tobias Heuts's user avatar
1 vote
0 answers
297 views

I have an app which is immersive on android but when I open a Modal the android navigation appears.From what I've searched the Dialog for Modal should have some flags to make it immersive.
Chelaru Stefan's user avatar
1 vote
1 answer
337 views

I am trying to enter in immersive mode using View decorView = getActivity().getWindow().getDecorView(); decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | ...
ingsaurabh's user avatar
  • 15.2k
0 votes
1 answer
278 views

I have a SurfaceView that uses a canvas to render based on touch events. The activity also uses immersive mode to make it full screen. The problem is that when the user swipes from the top of the ...
behelit's user avatar
  • 1,784
2 votes
1 answer
785 views

I am trying to get my Xamarin.Forms application to use Android's immersive mode, since I am using a device with small screen, so soft keys and navigation bar is stealing my precious screen real estate....
Denis Vitez's user avatar
1 vote
1 answer
1k views

I have this styles.xml <resources> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> ... <item name="android:windowFullscreen">true</item> ...
user1506104's user avatar
  • 7,126
0 votes
1 answer
150 views

Please Check the Images Image 1 Image 2 after one click I want to hide and show all system bars (status bar, Action Bar and Bottom Navigation Bar) in every clicks on the activity screen.
Badal Kumar Satapathy's user avatar
0 votes
0 answers
429 views

This is a very short question: Suppose I have an immersive-screen Activity in the app, and I wish to give the users a choice of seeing heads-up notifications of incoming calls, because such a thing ...
android developer's user avatar
2 votes
1 answer
240 views

Background I'm investigating how to replace the UI of the dialer, when the user gets a phone call (incoming/outgoing phone calls). This seems to be possible in 2 ways: On old Android versions, it's ...
android developer's user avatar
5 votes
0 answers
729 views

I am trying to implement Immersive (Fullscreen) Mode in my Android Application, and I'm running into a problem that I cannot solve. I'm following the Immersive Mode guide and sample apps from the ...
Bradleycorn's user avatar
  • 1,216
0 votes
2 answers
5k views

I want to add immersive mode (fullscreen, without on screen navigation bar) to my React Native app. In the best situation I would have it only when viewing the app in Landscape mode. That way the ...
Nieck's user avatar
  • 1,646
6 votes
2 answers
2k views

I use immersive-sticky mode to hide the navigation bar and action bar: @TargetApi(19) private void setImmersiveMode() { if (Build.VERSION.SDK_INT >= 19) { View decorView = getWindow()....
activity's user avatar
  • 2,733
3 votes
2 answers
2k views

I have an Android app which uses the immersive sticky mode and it works well on previous versions of Android as well as on Android P, but when turning on the option of simulating a display cutout (...
fergaral's user avatar
  • 2,117