Questions tagged [android-fullscreen]

An app is in full screen mode when it occupies all the available space on the screen surface. I.e.: it hides the status and the title bars to gain some height.

An app is in full screen mode when it occupies all the available space on the screen surface. I.e.: it hides the status and the title bars to gain some height.

326 questions
20
votes
1 answer

Make a SurfaceView larger than the screen (Fitting a camera preview to a SurfaceView larger than the display)

I have a custom camera application and I want for any preview sizes to display it in full screen mode without stretching the camera preview image. For this, I need to make the surfaceView larger than the screen in order to keep aspect ratio, so…
Paul
  • 3,812
  • 10
  • 50
  • 73
19
votes
2 answers

How to completely exit from Immersive full screen mode?

I would like to implement a button to enable/disable the immersive full screen mode. I'm using those methods but the showSystemUI only shows quickly and hide again... How to completely exit from immersive mode? My methods: // This snippet hides the…
19
votes
4 answers

Immersive fullscreen below 4.4

I have an app that I want to run in fullscreen. If i have a device with 4.4 KitKat it is easy to set the SYSTEM_UI_FLAG_IMMERSIVE to make the app go pure fullscreen. However if i have a device with a lower API than 4.4. I have no idea how to make it…
17
votes
4 answers

Making an Android app run full screen and landscape

I have seen certain apps, especially most of the games (Eg. Angry Birds, Temple Run etc) run fullscreen and in landscape mode when launched. Their orientation never changes and they never exit fullscreen when the screen is touched. How its done?…
Sunit Prasad
  • 323
  • 1
  • 2
  • 6
15
votes
6 answers

Full Screen without navigation & status bars

I want to create a activity with full screen. Nothing on above like Notification Bar and nothing below like Home-Button etc.I am able to get this, but also wanted to remove below home-button bar: This is my code.