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
10
votes
2 answers

Android Popup Window Full Screen

I want to create a popupwindow for fullscreen i've used the following : LayoutInflater inflater = (LayoutInflater) MainActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE); layoutt = inflater.inflate(R.layout.loginto,(ViewGroup)…
mkumar
  • 125
  • 1
  • 2
  • 6
10
votes
2 answers

Smooth transition between full-screen-activity and one with notification-bar and action bar

Background I have an app that has 2 activities : splash activity, which is shown in full screen (no action bar, no notification bar) main activity, which has both an action bar (uses actionBarSherlock) and a notification bar. The problem For some…
9
votes
1 answer

status bar flicker when exiting fullscreen activity

I noticed a pretty irritating flicker that happens in the following scenario: display a fullscreen activity and then launch another activity that is not fullscreen. In my app I use an action bar at the top of the second activity and I clearly see…
user2164422
  • 91
  • 1
  • 3
8
votes
3 answers

setFullScreenIntent not working when screen is locked in android 10

I am trying to set a fullScreentIntent using NotificationCompat in android 10 when the alarm goes on but the fullScreenIntent is not showing even when the alarm goes on. I added USE_FULL_SCREEN_INTENT in manifest file. I tried acquiring partial wake…
8
votes
0 answers

Show keyboard in full screen mode in Android

The problem is that showing keyboard (set focus to EditText) switches off full screen mode of Activity: all bars become visible again. Snippet below shows how I do set full screen mode for an Activity. Is it possible to show keyboard in full screen…
Konstantin Konopko
  • 5,229
  • 4
  • 36
  • 62
8
votes
11 answers

How to make a FullScreen Activity on Android

Ok so I am trying to replicate the look and feel of the Muzei Live Wallpaper App by Roman Nurik which is open source. (Check out his GitHub repository here - https://github.com/romannurik/muzei/ ) When the App Launches there is a subtle svg path…
Prateek Prasad
  • 827
  • 2
  • 10
  • 19
8
votes
5 answers

App crashing when trying to hide the title bar

In order to make a full screen app, I've done the following changes to the manifest of a new "blank activity" project: android:theme="@android:style/Theme.NoTitleBar.Fullscreen" The application crashes when running on any device. The changes I've…
8
votes
1 answer

Using SystemUiHider to keep the navigation bar hidden

In older versions of Android, it was necessary to use: android:theme="@android:style/Theme.NoTitleBar.Fullscreen" in the manifest to make the title bar disappear. In the newer ADT versions, I have noticed a SystemUiHider class, which lets you make…
Jono
  • 707
  • 2
  • 8
  • 17
7
votes
8 answers

Switching from full screen to not full screen pop/slide

Going from not full screen to full screen with Android works fine. However, upon returning from my full screen activity (a full screen video player), the activity pops in sliding down as the status bar animates down. It seems that the resuming…
mhradek
  • 1,376
  • 14
  • 19
7
votes
0 answers

Hide status bar in android when is softkeyboard visible but without using fullscreen flags

I need to create activity which will contain text input (EditText) and some list of items (TextView-s) under that input. The status bar wont be visible, only navigation bar will be visible. After user clicks on EditText, soft keyboard needs to be…
7
votes
4 answers

Overflow Menu click disabling Immersive mode - Android 4.4 Kitkat

Anybody know if this is a Bug or is supposed to do this. When clicking the Overflow icon while using KitKat's Immersive mode, it disables the immersive mode. Anybody else running into this? Full Code by Google - Here public void toggleHideyBar() { …
Jaison Brooks
  • 5,816
  • 7
  • 43
  • 79
6
votes
1 answer

React-Native : How to get the complete height of the device when 'Full Screen Mode' is enabled?

I am taking the Window height by using Dimensions.get('window').height and rendering content over screen. But when Full Screen Mode is enabled hardware buttons are hidden which results to an extra space over the screen. But still…
ThinkAndCode
  • 1,319
  • 3
  • 29
  • 60
6
votes
1 answer

Android VideoView fullscreen with Navigation Bar overlapping controls

So, I know this has been asked several times, but I cannot get it to work (and the answer seems to change with every Android version). EDIT: I'm testing on Marshmallow, but it would be nice to get it working on Android 4.1+. What I want is to simply…
ocramot
  • 1,361
  • 28
  • 55
6
votes
2 answers

android full screen an activity and hide key bar

i am new in android programming! i want a full screen image like Hill Climb Racing (as you can see below) i try to use…
strings95
  • 661
  • 11
  • 26
5
votes
2 answers

How to fix : Navigation bar icons still showing, when pop-up menu is opened (Full screen - Immersive sticky)

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 read this is not possible unless you root the…
1 2
3
21 22