fullscreen

Multiple JavaFX stages in fullscreen mode

有些话、适合烂在心里 提交于 2020-01-02 01:23:27
问题 I have an application that contains two stages which should be shown on two different screens both in fullscreen mode. I managed to position the two stages on seperate screens, and tried to set the fullscreen property to true on each Stage, but only of them is shown without decoration. It is always the one that has the fullscreen property set last that is shown in fullscreen mode. Is it not possible in JavaFX 2.2 to have multiple stages in fullscreen mode at the same time? 回答1: I also ran

How to output java full screen properly

走远了吗. 提交于 2020-01-02 00:58:05
问题 Now what I am doing in my program is that I am using setundecorated = true and MAXIMIZED_BOTH So it makes it go full screen and the display looks very nice, But the problem is that there are images (border) on the left and the right side of my screen and also a blue background. What happens is that in changing screens and resolutions these get disturbed and are not shown properly. Those grey patches come up again History: I have a java program which I wanted to always open in full screen; I

Android HTML5 video fullscreen and rotation

谁说胖子不能爱 提交于 2020-01-01 11:34:09
问题 i read the article Android WebView: handling orientation changes and follow the tip i build a project MainActivity package com.example.testvideo1; import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.annotation.SuppressLint; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup;

Android HTML5 video fullscreen and rotation

ⅰ亾dé卋堺 提交于 2020-01-01 11:32:47
问题 i read the article Android WebView: handling orientation changes and follow the tip i build a project MainActivity package com.example.testvideo1; import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.annotation.SuppressLint; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup;

java fullscreen window with transparency

假如想象 提交于 2020-01-01 08:59:30
问题 I am trying to create a fullscreen window that cover the whole screen using Java. This window must also have some transparency (about 30%-50% transparent). When saying whole screen, I do mean it cover everything (including the dock/taskbar/menubar in OSX/Linux/Windows), and when I say with transparancy, I mean a real-time transparancy and not just a hacked screenshot. Here is what I am aware-of/tried: Using Java Fullscreen API: while it creates a true fullscreen, you cannot have some

firefox Browser rejected fullscreen change

流过昼夜 提交于 2020-01-01 05:15:12
问题 I'm trying to make a element of my website in fullscreen when we click on it, and it works with chrome, IE, but not with firefox. I went to the microsoft fullscreen API, and I tested theire code, and there is no problems with any of this browsers. Here the part of my web site I want to put in full screen. <div class="wrap"> <div class="signin"> <div style="margin: 2px 0px -25px 10px;"><h1>Sign In or <a href="<?php echo $this->url(array('module' => 'default','controller'=>'paid-sign-up',

Mac OS X Lion: Detect if another application is running in full screen mode?

为君一笑 提交于 2020-01-01 04:04:10
问题 In a Cocoa app, is there a way to tell if another application currently is in full screen mode? My application is configured to show up on all Spaces and listens for mouseEntered events to order itself to the front. Problem is that when another app is in full screen mode and the user happens to move the mouse across the black area where my app's window is located, it is brought to the front (happens with multiple monitors). I've only seen the above behavior with [self setCollectionBehavior:

How to remove system bars on Android, I mean, all

这一生的挚爱 提交于 2019-12-31 05:30:07
问题 I'm pretty new with Android programming, started a few weeks ago. Stackoverflow it's my new best fried since android day 1. For the 1st time, I would like to actually ask for help instead of reading it somewhere else, mostly because I can't find the answer to my problem 'anywhere'. I'm removing system bars at my Android Activity using: this.requestWindowFeature(Window.FEATURE_NO_TITLE); this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG

create a page which contain a flash can be add text dynamiclly

旧时模样 提交于 2019-12-31 05:20:05
问题 I have to create a web page which can be set to full screen(I mean the real full screen,not like press the F11),in the full screen there should be some words displaying. Take the http://stackoverflow.com for example: Normally,it show its contents(the questions),but someday,maybe a VIP come to visit the page,so we want to replace the whole page with a welcome screen. Of course we can replace the https://stackoverflow.com/index.html (suppose it is the index page) with the welcome text(welcome

How do I capture keyboard events while watching an HTML5 video in fullscreen mode?

本秂侑毒 提交于 2019-12-31 04:29:06
问题 I need to know when the user presses the escape key when watching an HTML5 video in fullscreen mode. Unfortunately any configured listeners on the document don't apply since when the user is watching an HTML5 video in fullscreen mode the system focus is on the native video player rather than the browser. An alternative is listening for when focus reverts back from the native video player to the browser, but I'm unsure as to how I would capture this. document.addEventListener('keydown',