android-immersive Questions
2
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 comp...
Lorineloriner asked 3/12, 2021 at 9:52
4
Currently using this block of code in Activity class to enter sticky immersive mode:
override fun onWindowFocusChanged(hasFocus: Boolean) {
super.onWindowFocusChanged(hasFocus)
if (hasFocus &...
Estrous asked 17/2, 2018 at 21:5
0
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 ...
Pickerel asked 5/6, 2020 at 17:8
2
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().getDeco...
Ineffective asked 28/3, 2018 at 12:4
5
Solved
I have an Android Application that is made using Fragments
I am hiding the bars at top and bottom of my screen, using the following code.
@Override
protected void onResume() {
super.onResume();...
Queue asked 24/9, 2015 at 10:2
5
Solved
I'm trying to implement a fullscreen mode, but for Android 4.4 and up, it shows a blank space there:
BEFORE immersive mode(fullscreen)
and AFTER the toggleFullScreen(false);
as you can see, ...
Konstanz asked 22/12, 2015 at 4:26
3
Solved
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 instr...
Pillion asked 24/5, 2019 at 23:25
2
Initially I set my Activity to be in Immersive Mode with the following code:
View decorView = getWindow().getDecorView();
decorView.setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View...
Orren asked 4/3, 2016 at 8:25
1
Solved
I use below code to use Immersive Full-Screen Mode:
getWindow().getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View...
Juliannajulianne asked 31/7, 2017 at 21:17
5
I'm facing a problem when using immersive mode. Here is the code I put on all activities:
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
i...
Inspissate asked 21/3, 2015 at 17:59
2
Is there anyway to get my Xamarin Forms application on Android go fullscreen or immersive mode?
I tried the following, and all the controls on the status bar are hidden but the status bar itself i...
Proficient asked 20/1, 2016 at 12:13
2
Solved
I'm having issues when trying to use immersive mode and using android:fitsSystemWindows="true" with DrawerLayout. I have to set this to true for the DrawerLayout and toolbar to be constrained to th...
Fogel asked 25/3, 2016 at 19:44
0
I've got a full screen Activity that does a hide/show of the system UI using the following two functions:
// This snippet hides the system bars.
public static void hideSystemUI(View view) {
// Se...
Topgallant asked 18/5, 2016 at 22:50
1
Solved
I have a fullscreen app:
MainActivity.java:
public class MainActivity extends AppCompatActivity {
@TargetApi(Build.VERSION_CODES.KITKAT)
private void removeControlBar(){
View decorView = getWi...
Apteryx asked 21/12, 2015 at 11:44
0
Immersive sticky mode does not seem to work when popup windows are used in an android app. The status and nav bars do come into focus for the duration of the pop up. While i was able to reset the S...
Borghese asked 23/11, 2015 at 7:20
1
© 2022 - 2024 — McMap. All rights reserved.