Questions tagged [fullscreen]

A fullscreen object occupies the entire screen.

An application is considered to be fullscreen if it takes up the full area of the screen, as opposed to being in a window.

Common uses for full-screen include playing videos, viewing photo or playing games.

In Microsoft Windows 8 and above, Windows Store applications are shown in a full-screen mode. Full screen mode can be entered/exited using the F11 function key.

In Mac OS X Lion and above, a number of applications have a full-screen mode, that can be activated by clicking the arrows control in the top-right corner of an application window.

An element in a Web page can be taken full-screen by using the Fullscreen API.

References

3484 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
292
votes
23 answers

How to make the window full screen with Javascript (stretching all over the screen)

How can I make a visitor's browser go fullscreen using JavaScript, in a way that works with IE, Firefox and Opera?
user63898
  • 29,839
  • 85
  • 272
  • 514
159
votes
21 answers

Is there a way to make HTML5 video fullscreen?

Is there a way to play a video fullscreen using the HTML5
nicudotro
  • 7,129
  • 6
  • 25
  • 17
145
votes
6 answers

Can I avoid the native fullscreen video player with HTML5 on iPhone or android?

I've built a web app that uses the HTML5 tag and JavaScript code that renders other content synchronized with the running video. It works great in desktop browsers: Firefox, Chrome, and Safari. On an iPhone or a DroidX, the native video player pops…
AlpineCarver
  • 1,668
  • 2
  • 12
  • 12
134
votes
14 answers

JFrame in full screen Java

I will be doing a project soon and I will have to use full screen mode in it. It will draw some graphics in the window. It would be convienient if I use JFrame or something similar. I don't know what the final resolution of the screen will be.…
Yoda
  • 17,363
  • 67
  • 204
  • 344
121
votes
4 answers

Full screen in WPF application

I am developing a WPF application which will be displayed in Full screen. In addition, the application should work on many tablets of multiple dimensions. I'd like my application to run in full screen independently from its dimensions. What is the…
Lamloumi Afif
  • 8,941
  • 26
  • 98
  • 191
104
votes
15 answers

How to hide navigation bar permanently in android activity?

I want to hide navigation bar permanently in my activity(not whole system ui). now i'm using this piece of code getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION); It hides the bar but when user touches the…
Sujith S Manjavana
  • 1,417
  • 6
  • 33
  • 60
79
votes
6 answers

How to stop a requestAnimationFrame recursion/loop?

I'm using Three.js with the WebGL renderer to make a game which fullscreens when a play link is clicked. For animation, I use requestAnimationFrame. I initiate it like this: self.animate = function() { self.camera.lookAt(self.scene.position); …
corazza
  • 31,222
  • 37
  • 115
  • 186
76
votes
14 answers

Make flutter application fullscreen | How to enable fullscreen in flutter?

How can I make a flutter application fullscreen. I already found out how to hide the status bar Hide Android Status Bar On Flutter App. but I can't seem to find how to hide the android navigation bar.
Bobola
  • 935
  • 2
  • 8
  • 10
75
votes
7 answers

How to detect when a page exits fullscreen?

I'm creating a 3D multiplayer game with Three.js, where players can join various existing games. Once "play" is clicked, the renderer is appended to the page and fullscreens. This works great, but the problem is that, when I exit the fullscreen, it…
corazza
  • 31,222
  • 37
  • 115
  • 186
74
votes
9 answers

How to display a Windows Form in full screen on top of the taskbar?

I have a .net windows application that needs to run in full screen. When the application starts however the taskbar is shown on top of the main form and it only disappears when activating the form by clicking on it or using ALT-TAB. The form's…
myquestionoftheday
  • 911
  • 1
  • 7
  • 9
70
votes
5 answers

Chrome Fullscreen API

According to this article Google Chrome 15 has a fullscreen JavaScript API. I have tried to make it work but failed. I have also searched for official documentation in vain. What does the fullscreen JavaScript API look like?
Randomblue
  • 112,777
  • 145
  • 353
  • 547
70
votes
15 answers

Video 100% width and height

I have a video, and I want it to FILL 100% of the width, and 100% of the height. And keep the aspect ratio. Is it possible that it at least fills 100% for both? And if a bit of the video has to be out of the screen to keep the aspect ratio, that…
Milan
  • 863
  • 2
  • 9
  • 14
66
votes
15 answers

Full-screen responsive background image

I am very new to Front-end development and Foundation. I am trying to get
to be a full screen image that scales down responsively. Can anyone tell me what I am doing wrong? It is scaling properly, but is not showing the…
Tom Rogers
  • 719
  • 1
  • 7
  • 10
55
votes
4 answers

How do I set the window / screen size in xna?

How can I adjust the size of the window in XNA. Default it starts in a 800x600 resolution.
Sjors Miltenburg
1
2 3
99 100