Click here to Skip to main content
15,888,521 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Anyone doing Android development for non consumer uses? I'm developing a data collection app for my employer that would run as a fullscreen Android app on tablet devices. The devices and software would be sold together to companies for specific uses. My current target device is the Archos 7 home tablet. My app works fine but I can't seem to hide the status bar. The Android emulator shows the app bar as hidden, but when deployed to the device, the status bar still shows. I know that Archos has done some special work regarding the status bar, but I also know that other apps like the Video player do hide the status bar.

Does anyone have any ideas?
Posted
Comments
David Crow 26-Nov-17 21:22pm    
Do you have something like this in the AndroidManifest.xml file:

<activity ... 
       android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
or you could try setting via code with:

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900