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

How can I specify my ui elements to be situated above the navigation bar in android?

in my app I am using a full screen layout, meaning that the screen goes beyond the on screen buttons (like the ones on the nexus devices). If I now put buttons and other elements at the bottom of my layout, they will interfere with the navigation…
user2426316
  • 7,131
  • 20
  • 52
  • 83
0
votes
1 answer

Android-fullscreen seamless video loop in background

I am created an Android app thta needs to have a fullscreen seemless video loop playing in the background. By 'in the background' I mean that there will be buttons on top of the video. I've read these threadw already playback video full…
Bachalo
  • 6,965
  • 27
  • 95
  • 189
0
votes
0 answers

Android holoeverywhere fullscreen

i want to know how to set my activity to fullscreen. i know how to do it normally without using the holoeverywhere libs. but i cant get it to work using holoeverywhere. This is what i have inside my on create method trying to do this public class…
0
votes
2 answers

Android fullscreen issue on android 4.1

I'm working on Android 4.1 and application must run on Piranha Ultra III Tab 10.1. I'll use http://developer.android.com/design/get-started/ui-overview.html for naming reference for my question; Status bar and navigation bar... I tried too many…
0
votes
2 answers

How can I get the notification bar in my full screen android app?

I have got an android app that uses a surface view to display a preview of the camera. This is all in full screen. Now, the problem is that when I try to pull down the notification bar from the top, I don't get anything. I can't pull down any…
user2426316
  • 7,131
  • 20
  • 52
  • 83
0
votes
1 answer

Take Android Screenshot programmatically-whatever on screen-app may be in background-not rooted device

I want to take Screenshot of Android device programmatically. I have searched lot of things but wherever i found, it is saying that either your device should be rooted or only you can take screenshot of your app only, i.e. if your app is in…
Mehul Thakkar
  • 12,440
  • 10
  • 52
  • 81
0
votes
2 answers

Homescreen is moving up and down once when entering to that page in my android app

After adding android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:hardwareAccelerated="false" in application of manifest.xml only home screen is moving up and down.Before It was working fine.But I need my app in full screen mode…
rms27
  • 21
  • 5
0
votes
0 answers

Android: Cover the current activity

I want to cover the screen of my current activity with a full screen page. Now I'm call another activity that is set not to have ActionBar, but I'm sure there's a better way to do that. Any suggestions?
andrew
  • 3,879
  • 4
  • 25
  • 43
0
votes
1 answer

Android HTML5 Video only plays in full screen

I have an HTML5 video tag that works great in all browsers other than on Android. When the video begins to play I can only hear the audio. I can only see the video if I click the full screen button. The tablet is a Motorola Xoom with 4.1.2 and the…
CuddleBunny
  • 1,941
  • 2
  • 23
  • 45
0
votes
1 answer

How to keep header when the soft keyboard comes in with full screen?

I have a header on a chat that move up every time you click on EditText, and disappear, To fix this problem, I added on Oncreate this getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE); that works perfect, but when I…
D4rWiNS
  • 2,585
  • 5
  • 32
  • 54
0
votes
2 answers

Fullscreen Activity issue in Android 4.3

I updated to 4.3 today and I saw that fullscreen activities are not working properly, more in details, the top bar is always shown. I tried to run on the emulator (4.2) and works fine. Anyone has the same problem?
Samoji
  • 305
  • 2
  • 3
  • 11
0
votes
1 answer

Android: Playing html videos in full screen

I am loading a HTML page on to a webview, which has a list of videos. Now when I try to play the videos, they are playing but I am unable to make them play in full screen. I have used the below code in my HTML file, and on debugging found that…
0
votes
3 answers

Fullscreen Android "Unfortunately application has stopped" Why?

I wanted to implement in my application the fullscreen. I found this code to do it: public class FullScreen extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
Atlas91
  • 5,754
  • 17
  • 69
  • 141
0
votes
0 answers

Full Screen Activity - System UI

I have a full screen activity with a Text View in it, the text view activity is created programmatically. When the System UI is shown this text view doesn't remain at the same place but it descends to where the upper part of the System UI ends. I…
Steve Cortis
  • 522
  • 1
  • 6
  • 25
0
votes
3 answers

Ice cream sandwich - Full Screen is not working

I am implementing a launcher. I want to disable back/home/settings button on the screen for a while. Therefore I want to set it as full screen. I could do that in gingerbread and honeycomb, it works fine but in ice cream sandwich it does not. I have…
1 2 3
21
22