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
25
votes
4 answers

Why Direct3D application performs better in full screen mode?

The performance of a Direct3D application seems to be significantly better in full screen mode compared to windowed mode. What are the technical reasons behind this? I guess it has something to do with the fact that a full screen application can…
smt
  • 1,171
  • 1
  • 10
  • 13
25
votes
5 answers

Eclipse Luna 4.4 fullscreen

How to switch to fullscreen editor mode in Eclipse Luna 4.4? I know the ^m shortcut for maximizing current editor window, but it's not what F11 fullscreen gives in Chrome or in SublimeText.
andrej
  • 4,518
  • 2
  • 39
  • 39
25
votes
5 answers

How to hide full screen button of the video tag in HTML5

I need to hide the full screen button of the video tag in HTML5. Is there any way to achieve it ? Thanks.
Arun
  • 1,644
  • 9
  • 25
  • 41
24
votes
4 answers

Hide address bar in Progressive Web Applications

I'm developing a PWA with VueJS. I started testing my application in real devices (Add to home screen). My application is intended to be 100% height, as it displays a map as you can see: It seems that sometimes, transitions that appear from outside…
24
votes
1 answer

In Qt 5, what's the right way to show multi-monitor full screen QWidget windows?

I have a Windows & Mac program that switches into full-screen mode on multiple monitors. In Qt 4, it seems (I can't find explicit documentation on how to do this) like the 'correct' way to go about this is by creating N QMainWindow's for the N…
Ted Middleton
  • 6,859
  • 10
  • 51
  • 71
24
votes
3 answers

FullScreen Swing Components Fail to Receive Keyboard Input on Java 7 on Mac OS X Mountain Lion

Update 12/21: 7u10 was recently released. Confirmed that: The issue still persists Thankfully, the workaround still functions! Update 11/7: And we have a workaround! Leonid Romanov from Oracle on the openjdk.java.net mailing list provided some…
Vermillion002
  • 261
  • 2
  • 7
23
votes
5 answers

iPhone how to create a full screen app?

I've been trying to create a full screen view. I plan on using core graphics for rendering. I am new to iPhone development so please forgive this basic question. Here's my setup code; - (void)loadView { CGRect rect = [[UIScreen mainScreen]…
Rich
  • 3,722
  • 5
  • 33
  • 47
23
votes
4 answers

How to make an Alert dialog in full screen in Android?

How to make an Alert Dialog in full screen in Android?
user6629610
  • 241
  • 1
  • 2
  • 3
23
votes
5 answers

Make div 100% Width of Browser Window

I'm trying to make one of my containers 100% of the width of the screen. Here is my SASS body, html { width: 100%; height: 100%; padding: 0; margin: 0; } #neo_wrapper { width: 960px; height: 1500px; margin: 0 auto; …
Mike K.
  • 267
  • 1
  • 4
  • 10
23
votes
5 answers

C# - Why won't a fullscreen winform app ALWAYS cover the taskbar?

I'm using Windows Vista and C#.net 3.5, but I had my friend run the program on XP and has the same problem. So I have a C# program that I have running in the background with an icon in the SystemTray. I have a low level keyboard hook so when I…
Joel
  • 16,474
  • 17
  • 72
  • 93
22
votes
7 answers

How to call setUndecorated() after a frame is made visible?

In my Swing application, I want the ability to switch between decorated and undecorated without recreating the entire frame. However, the API doesn't let me call setUndecorated() after the frame is made visible. Even if i call setVisible(false),…
Lucky
  • 4,787
  • 9
  • 40
  • 50
22
votes
6 answers

Toggle Fullscreen mode

I need some help toggling fullscreen mode. I have a setting in a preference screen to go fullscreen. In my main activity's onResume I have: if(mFullscreen == true) { getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); …
bwoogie
  • 4,339
  • 12
  • 39
  • 72
22
votes
5 answers

Flutter - video_player fullscreen

I'm using a plugin called video_player on my Flutter project. I'm able to play and pause videos without a problem, but I want to make it fullscreen and horizontal. I couldn't find anything related to this. This is the basic code I'm…
Notheros
  • 2,137
  • 9
  • 23
  • 34
22
votes
1 answer

Allowing an iframe to become full-screen, cross-browser

I have some code which I use to display a video within an iframe. 99% of the time if works when the user wants to switch to fullscreen, in whatever browser. However, we've found a couple of examples in IE where the fullscreen option only expands to…
Terry Delahunt
  • 616
  • 4
  • 21
22
votes
5 answers

Run a website in fullscreen mode

I am looking for a trick to put my website in fullscreen mode without human interaction. I've found some examples using HTML5's techniques, but all of then needs to be triggered by a human interaction. This website will be displayed in a TV ... I…
Marcio Barroso
  • 783
  • 1
  • 7
  • 21