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
685
votes
41 answers

Fullscreen Activity in Android?

How do I make an activity full screen? Without the notification bar.
Praveen
  • 90,477
  • 74
  • 177
  • 219
160
votes
5 answers

How to set dialog to show in full screen?

I have a GridView and i want to make an implémentation of a dialog, on which the picture that i have selected should display in full screen. so how can i make the dialog shows in a full screen mode ? thanks!
user790156
  • 2,718
  • 5
  • 20
  • 20
60
votes
11 answers

Android - Making activity full screen with status bar on top of it

I want to make my activity full screen with status bar on top of it like this picture: I have used this code in manifest inside activity tag: 'android:theme="@style/Theme.AppCompat.Light.NoActionBar"' But my view doesn't start from the status bar…
59
votes
17 answers

Android: making a fullscreen application

What is the simplest change that I can make to a new Blank Activity, as created by the latest version of Android Studio, to get the app to appear fullscreen? I want to create a fullscreen Android application. I'm working with Android Studio. This…
James Newton
  • 6,623
  • 8
  • 49
  • 113
48
votes
6 answers

About the Full Screen And No Titlebar from manifest

I want to set my application to full screen view. I got the idea to set it in an individual activity using FullScreen and NoTitlebar, but i want to set it in my Manifest XML file for the whole application not for each activity... Is this…
user644458
44
votes
10 answers

How to show imageView full screen on imageView click?

I am getting images from url and showing it on the imageView. This functionality is working properly. But I want that when I click on that image, then it must be full screen. So how to achieve this functionality? I know I am missing something.…
Amit Jayaswal
  • 1,725
  • 2
  • 19
  • 36
44
votes
2 answers

Create a transparent dialog on top of activity

Background I'm trying to put a layer on top of the current activity which would have explanation of what is going on on the current screen, similar to what occurs on contact+ app . I know there are some solutions for this (like the showCase library…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
42
votes
1 answer

SurfaceFlinger: Failed to find layer FullScreenFragmentActivity in layer parent (no-parent)

I have a BottomSheetFragmentActivity which causes this crash on Android 8.0 devices. I am looking for a workaround, without setting targetSDK back to 26. I solved this as described here: But this in turn causes SurfaceFlinger: Failed to find layer…
Ralf Wickum
  • 2,850
  • 9
  • 55
  • 103
33
votes
8 answers

Android Studio Keyboard Shortcut for full screen mode

I want to enter full screen mode in Android Studio. Is there any Keyboard Shortcut for doing it. What Is the Keyboard Shortcut key for enter and exit full screen mode in Android Studio?
31
votes
3 answers

Action bar displayed incorrectly when returning from immersive mode

I'm having some issues returning from Immersive Mode in an ActionBarActivity. I have created a simple app to illustrate this issue. There is a layout with a single button to toggle immersive mode. When "returning" from immersive mode, the action bar…
30
votes
3 answers

Immersive mode navigation becomes sticky after volume press or minimise-restore

public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { this.getWindow().getDecorView().setSystemUiVisibility(getSystemUiFlags()); super.onCreate(savedInstanceState); …
Yaroslav Mytkalyk
  • 16,950
  • 10
  • 72
  • 99
29
votes
3 answers

Full Screen Notification only showing as a Heads Up

I have been banging my head against the table with this problem for 3 days now, please tell me where I have strayed. When I am getting an incoming VoIP call, I am trying to show a full screen notification, just like the PhoneApp does. I am ok with…
Leo
  • 4,652
  • 6
  • 32
  • 42
26
votes
4 answers

How to set activity to fullscreen mode in Android?

How to set full screen mode for activity in Android? I am using the following code to set full screen but it generates an error: Exception: android.util.AndroidRuntimeException: requestFeature() must be called before adding content. …
24
votes
7 answers

Android make a dialog appear in fullscreen

I need the dialog to fill the screen except for some space at the top and the bottom. I've search for a solution but couldn't find one probably because I'm declaring it in an onClickListener. Can someone please give a solution? Activity…
Mihai Bratulescu
  • 1,915
  • 3
  • 27
  • 43
20
votes
4 answers

Overlapping shadow effect remains on Navigation Drawer's NavigationView

I have refined the Navigation Drawer Activity project template of Android Studio, which uses Toolbar, v7.app.ActionBarDrawerToggle and NavigationView instead of the NavigationDrawerFragment (and layout/fragment_navigation_drawer.xml). It is…
hata
  • 11,633
  • 6
  • 46
  • 69
1
2 3
21 22