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
31
votes
8 answers

Qt FullScreen on Startup

I want to start an application on fullscreen (MacOS 10.8.x, Qt 5.1.1, C++) depending on the settings: main.cpp #include "MainWindow.h" #include int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; …
Thomas Ayoub
  • 29,063
  • 15
  • 95
  • 142
30
votes
4 answers

"webkit-playsinline" video tag attribute

The
tim peterson
  • 23,653
  • 59
  • 177
  • 299
29
votes
4 answers

How to set maximum fullscreen in vmware?

I'm using VMware workstation 8 on windows 7 and having some Linux hosts such as Centos, Backtrack and ... on it. The problem is the screen of the virtual machines is not fixed with my screen. here is the picture from my screen:…
Ali
  • 327
  • 1
  • 4
  • 5
29
votes
6 answers

Hide ICS back home task switcher buttons

Just wondering how to hide the ICS back/home/etc software buttons programmatically. Just like the Youtube apps does when playing a video. I want to hide them while a video is playing, but bring them up if the user taps the screen. I can't seem to…
rustyshelf
  • 44,963
  • 37
  • 98
  • 104
29
votes
5 answers

Three.js Full Screen Issue

I've read through the Three.js API, read through the questions here on StackOverflow, I've debugged the code using firebug and chrome's debugger, I've stripped out everything I can, but I am still getting this irritating full screen error, where the…
hypervisor666
  • 1,275
  • 1
  • 9
  • 17
28
votes
3 answers

Fullscreen API: Which events are fired?

I need to know which (DOM) events are fired when a user enter the fullscreen mode via the new Fullscreen API. I tried for example this snippet but it doesn't fire: jQuery('body').on('fullScreenChange', function() { alert("Fired!"); });
Poru
  • 8,254
  • 22
  • 65
  • 89
28
votes
8 answers

Going fullscreen on secondary monitor

How can you program a dotNet Windows (or WPF) Application in order to let it going fullscreen on the secondary monitor?
user91295
  • 306
  • 1
  • 3
  • 4
28
votes
1 answer

Fullscreen with pyqt4?

I'm new to pyqt and I've been looking for some docs about pyqt and fullscreen mode. but I couldn't find nothing. So here is my question: is there any way to run a PyQT 4 application on fullscreen?
CoCoMonk
  • 512
  • 1
  • 5
  • 9
28
votes
6 answers

How to open a web page automatically in full screen mode

How do I open a web page automatically in full screen mode? I am looking for a solution to open an web page automatically in full screen mode, without expecting user to users press F11 or any other browser-specifc key. I've searched a lot, but I…
shakthydoss
  • 2,551
  • 6
  • 27
  • 36
27
votes
6 answers

How to open two instances of Chrome kiosk mode in different displays (Windows)

We are developing a web application that needs to open in two different browser instances each on a different Screen. Obviously the pc we are using has dual display already, and both monitors have the same size and resolution. The idea is that as…
multimediaxp
  • 9,348
  • 13
  • 49
  • 80
26
votes
6 answers

Hiding Title in a Fullscreen mode?

Is there a way to hide the window title so that it won't get shown in fullscreen mode ( getWindow().setFlags(LayoutParams.FLAG_FULLSCREEN, LayoutParams.FLAG_FULLSCREEN) ) but then will appear…
yanchenko
  • 56,576
  • 33
  • 147
  • 165
26
votes
11 answers

Fullscreen the Exoplayer

I try to show the show video (.mp4) with exoplayer in RecyclerView and ViewPager. I show the video controller with custom layout. so far so good. Now try to fullscreen the video like other video player how use before but can't find a good way in the…
Ashkan
  • 1,357
  • 4
  • 16
  • 37
26
votes
6 answers

Android-Video View in Fullscreen

I am trying to make this VideoView to appear in full screen mode : public class ViewVideo extends Activity { private String filename; private static final int INSERT_ID = Menu.FIRST; @Override public void onCreate(Bundle savedInstanceState)…
bharathi
  • 6,019
  • 23
  • 90
  • 152
26
votes
11 answers

MPMoviePlayerController breaks/stops after going to fullscreen in iOS6

I have a MPMoviewPlayerViewController embedded into an UIView object. When I start the player in the embedded mode everything works fine and as expected. If the user then taps onto the fullscreen toggle (or if I change to fullscreen programmatically…
snod
  • 2,442
  • 3
  • 20
  • 22
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. …