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
1
vote
1 answer

How to hide the browser address bar on orientation change in mobile browsers?

I have a video embedded on a website and similiar to the youtube app's behavior to go to fullscreen in landscape mode I wanted to do that with javascript. I know you can't use the fullscreen api without clicking a button because of safety reasons…
user2718671
  • 2,866
  • 9
  • 49
  • 86
1
vote
2 answers

How Can i detect if full screen application is running in windows?

Like messengers, if the user runns some program in full screen e.g wmplayer they can change their status to away. Similary is there any way to find out in JAVA if the system is running something in full screen mode?
Space Rocker
  • 787
  • 3
  • 11
  • 25
1
vote
1 answer

What is the equivalent code in C# for RequestWindowFeature(Window.FEATURE.NO_TITLE)

I wonder how to write this code in C# requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); Thank you.
Ishwor Khanal
  • 1,312
  • 18
  • 30
1
vote
1 answer

scrolling disabled in the webpage when full screen mode is triggered

I am trying to get fullscreen mode using javscript. So I found this answer and working on it. But I found out that, when I am triggering full screen using this code scrollbar disappears and scroll is disabled. But if I am using F11 to trigger the…
Nagaraju
  • 1,853
  • 2
  • 27
  • 46
1
vote
1 answer

How do I fill the screen with a rectangle in OpenGL ortho mode?

I have a single 640x480 texture that needs to fill the screen. So far, I can make it work with a square texture, but not a rectangular one. glViewport(0, 0, display->w, display->h); glMatrixMode(GL_PROJECTION); glLoadIdentity(); double aspectRatio…
David Brown
  • 35,411
  • 11
  • 83
  • 132
1
vote
0 answers

TWebBrowser cannot be fullscreen on Android Delphi Application?

I am writing a software that should be work as fullscreen and load a web-page from local server and I set application fullscreen (Form Fullscreen property is true and Project > Option > Version Info > theme is "No title bar"). I am creating…
Alper
  • 1,085
  • 3
  • 20
  • 39
1
vote
0 answers

How do I disable Command + H key combination for a Java Swing Application in OS X

I am building a full screen java swing application for Mac users. This application is to be used for giving online tests and therefore requires the user not to exit from it. I am trying to block the Command + H key combination which hides the…
Maneesh Raina
  • 125
  • 1
  • 7
1
vote
1 answer

SFML fullscreen text editor

I am trying to create a fullscreen minimalistic text editor (by minimalistic I mean having only a blinking caret, black background, keyboard control by arrows to move around the text, backspace delete, etc. and that's it). I have created a…
Tobiasz
  • 1,059
  • 1
  • 12
  • 29
1
vote
2 answers

Make WPF Application fullscreen (cover taskbar) reliably

I have trouble with getting my app full screen in a way that covers task bar. The code has been unchanged for years and works fine in windows 7 but now moving to windows 10 I see that on different machines the behaviour is different. Here is what…
Karl Uibo
  • 353
  • 4
  • 10
1
vote
2 answers

I can't exit full screen

I used the Full Screen API to set the document body to fullscreen. Now, all calls for document.exitFullScreen (with the appropriate prefixes) result in the error: Uncaught TypeError: Illegal invocation at HTMLDivElement.fs.onclick The function…
Tobiq
  • 2,489
  • 19
  • 38
1
vote
1 answer

Google maps fits bound in fullscreen

I have a problem with Google Maps in fullscreen : when it needs to fit the bounds of markers it works in the small div, but in fullscreen it fits like it was in the small div again. What I need is that it "zooms in to fits bounds" when I go…
Guile
  • 1,473
  • 1
  • 12
  • 20
1
vote
2 answers

Android, fullscreen global method

So I want to make those 3 lines to be available as a function from every activity in my app. I tried to do a simple MyMethods class with a public void with those 3 lines, but i didn't work (Cannot resolve method ) package…
Paweł Rubin
  • 2,030
  • 1
  • 14
  • 25
1
vote
0 answers

after implementing a navigation drawer, fullscreen doesn't work properly anymore

i have added a navigation drawer to an activity and now the space where normaly the navigation bar is set (in my case it should be hidden by a fullscreen call) is occupied by a blank space. without the navigation drawer the activity works just fine,…
Bowser
  • 23
  • 6
1
vote
0 answers

fullScreenRequested does not work fully in my test browser that uses PyQt5

I am building a browser with python using pyqt5. I enabled fullscreen support and also enabled…
1
vote
1 answer

python full screen without console/borders

I'm looking for a way to create a full screen window and not showing console (or the borders), and escape the full screen when 'escape' is pressed. I have tried to rename the extension from 'py' to 'pyw', but it didn't hide the side bar as some…
Lumos
  • 1,303
  • 2
  • 17
  • 32