Android: Implement MaximizeUsingFullscreenGeometryHint

(This reintroduces c17a5cec19,
which was reverted in Qt 5 because it requires API level 23.)

This flag tells the app to use as much of the screen as possible
while still keeping system UI visible, and can be supported on Android
by using translucent system UI, similar to iOS.

What this does:
1. It changes the current fullscreen/not-fullscreen logic to
allow three states: fullscreen, fullscreen with translucent
decorations and not-fullscreen.

2. In order for it to work, we have to send the actual
screen geometry and available geometry, at least in the case
where the user needs to know the available geometry to
know the safe area of the window. So we get the real screen
metrics and pass these to the QPA plugin (API level 17, so
we can do that now that the minimum version is 21.)

3. Note that getting the insets and calculating the useable
area does not work for non-fullscreen windows, since Android
is quite inconsistent in this respect. So in this case we
just use the window size and origin of 0,0 for the available
geometry.

4. Since we are touching this code anyway, this patch also tries to use
more consistent wording (calling it "available geometry" everywhere
instead of desktop geometry in some places and just geometry in
others, etc.)

[ChangeLog][Android] Qt::MaximizeUsingFullscreenGeometryHint window
flag is now supported, and will make the window fullscreen, but keep
the system UI on-screen, with a translucent background color.

Fixes: QTBUG-74202
Change-Id: I4cc5ef9cc2a3bd22d4d8d2bb767c6ff8a3aa75c0
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Reviewed-by: Christian Strømme <christian.stromme@qt.io>
This commit is contained in:
Eskil Abrahamsen Blomfeldt 2020-01-16 09:06:06 +01:00
parent 3f73995a03
commit a35a7fcb5a
12 changed files with 203 additions and 150 deletions

View File

@ -121,6 +121,10 @@ public class QtActivityDelegate
private static final String EXTRACT_STYLE_KEY = "extract.android.style"; private static final String EXTRACT_STYLE_KEY = "extract.android.style";
private static final String EXTRACT_STYLE_MINIMAL_KEY = "extract.android.style.option"; private static final String EXTRACT_STYLE_MINIMAL_KEY = "extract.android.style.option";
public static final int SYSTEM_UI_VISIBILITY_NORMAL = 0;
public static final int SYSTEM_UI_VISIBILITY_FULLSCREEN = 1;
public static final int SYSTEM_UI_VISIBILITY_TRANSLUCENT = 2;
private static String m_environmentVariables = null; private static String m_environmentVariables = null;
private static String m_applicationParameters = null; private static String m_applicationParameters = null;
@ -131,7 +135,7 @@ public class QtActivityDelegate
private long m_metaState; private long m_metaState;
private int m_lastChar = 0; private int m_lastChar = 0;
private int m_softInputMode = 0; private int m_softInputMode = 0;
private boolean m_fullScreen = false; private int m_systemUiVisibility = SYSTEM_UI_VISIBILITY_NORMAL;
private boolean m_started = false; private boolean m_started = false;
private HashMap<Integer, QtSurface> m_surfaces = null; private HashMap<Integer, QtSurface> m_surfaces = null;
private HashMap<Integer, View> m_nativeViews = null; private HashMap<Integer, View> m_nativeViews = null;
@ -153,38 +157,51 @@ public class QtActivityDelegate
private CursorHandle m_rightSelectionHandle; private CursorHandle m_rightSelectionHandle;
private EditPopupMenu m_editPopupMenu; private EditPopupMenu m_editPopupMenu;
public void setFullScreen(boolean enterFullScreen)
public void setSystemUiVisibility(int systemUiVisibility)
{ {
if (m_fullScreen == enterFullScreen) if (m_systemUiVisibility == systemUiVisibility)
return; return;
if (m_fullScreen = enterFullScreen) { m_systemUiVisibility = systemUiVisibility;
m_activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
m_activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN); int systemUiVisibilityFlags = 0;
try { switch (m_systemUiVisibility) {
int flags = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION; case SYSTEM_UI_VISIBILITY_NORMAL:
flags |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
flags |= View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
flags |= View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
flags |= View.SYSTEM_UI_FLAG_FULLSCREEN;
flags |= View.class.getDeclaredField("SYSTEM_UI_FLAG_IMMERSIVE_STICKY").getInt(null);
m_activity.getWindow().getDecorView().setSystemUiVisibility(flags | View.INVISIBLE);
} catch (Exception e) {
e.printStackTrace();
}
} else {
m_activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN); m_activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
m_activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); m_activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
m_activity.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE); systemUiVisibilityFlags = View.SYSTEM_UI_FLAG_VISIBLE;
} break;
case SYSTEM_UI_VISIBILITY_FULLSCREEN:
m_activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
m_activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
systemUiVisibilityFlags = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
| View.INVISIBLE;
break;
case SYSTEM_UI_VISIBILITY_TRANSLUCENT:
m_activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN
| WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION
| WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
m_activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
systemUiVisibilityFlags = View.SYSTEM_UI_FLAG_VISIBLE;
break;
};
m_activity.getWindow().getDecorView().setSystemUiVisibility(systemUiVisibilityFlags);
m_layout.requestLayout(); m_layout.requestLayout();
} }
public void updateFullScreen() public void updateFullScreen()
{ {
if (m_fullScreen) { if (m_systemUiVisibility == SYSTEM_UI_VISIBILITY_FULLSCREEN) {
m_fullScreen = false; m_systemUiVisibility = SYSTEM_UI_VISIBILITY_NORMAL;
setFullScreen(true); setSystemUiVisibility(SYSTEM_UI_VISIBILITY_FULLSCREEN);
} }
} }
@ -943,7 +960,7 @@ public class QtActivityDelegate
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
outState.putBoolean("FullScreen", m_fullScreen); outState.putInt("SystemUiVisibility", m_systemUiVisibility);
outState.putBoolean("Started", m_started); outState.putBoolean("Started", m_started);
// It should never // It should never
} }

View File

@ -46,6 +46,7 @@ import android.util.AttributeSet;
import android.util.DisplayMetrics; import android.util.DisplayMetrics;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.view.WindowInsets;
public class QtLayout extends ViewGroup public class QtLayout extends ViewGroup
{ {
@ -69,10 +70,32 @@ public class QtLayout extends ViewGroup
@Override @Override
protected void onSizeChanged (int w, int h, int oldw, int oldh) protected void onSizeChanged (int w, int h, int oldw, int oldh)
{ {
DisplayMetrics metrics = new DisplayMetrics(); WindowInsets insets = getRootWindowInsets();
((Activity) getContext()).getWindowManager().getDefaultDisplay().getMetrics(metrics);
QtNative.setApplicationDisplayMetrics(metrics.widthPixels, metrics.heightPixels, w, h, DisplayMetrics realMetrics = new DisplayMetrics();
metrics.xdpi, metrics.ydpi, metrics.scaledDensity, metrics.density); ((Activity) getContext()).getWindowManager().getDefaultDisplay().getRealMetrics(realMetrics);
boolean isFullScreenView = h == realMetrics.heightPixels;
int insetLeft = isFullScreenView ? insets.getSystemWindowInsetLeft() : 0;
int insetTop = isFullScreenView ? insets.getSystemWindowInsetTop() : 0;
int insetRight = isFullScreenView ? insets.getSystemWindowInsetRight() : 0;
int insetBottom = isFullScreenView ? insets.getSystemWindowInsetBottom() : 0;
int usableAreaWidth = w - insetLeft - insetRight;
int usableAreaHeight = h - insetTop - insetBottom;
QtNative.setApplicationDisplayMetrics(realMetrics.widthPixels,
realMetrics.heightPixels,
insetLeft,
insetTop,
usableAreaWidth,
usableAreaHeight,
realMetrics.xdpi,
realMetrics.ydpi,
realMetrics.scaledDensity,
realMetrics.density);
if (m_startApplicationRunnable != null) { if (m_startApplicationRunnable != null) {
m_startApplicationRunnable.run(); m_startApplicationRunnable.run();
m_startApplicationRunnable = null; m_startApplicationRunnable = null;

View File

@ -96,8 +96,10 @@ public class QtNative
private static boolean m_started = false; private static boolean m_started = false;
private static int m_displayMetricsScreenWidthPixels = 0; private static int m_displayMetricsScreenWidthPixels = 0;
private static int m_displayMetricsScreenHeightPixels = 0; private static int m_displayMetricsScreenHeightPixels = 0;
private static int m_displayMetricsDesktopWidthPixels = 0; private static int m_displayMetricsAvailableLeftPixels = 0;
private static int m_displayMetricsDesktopHeightPixels = 0; private static int m_displayMetricsAvailableTopPixels = 0;
private static int m_displayMetricsAvailableWidthPixels = 0;
private static int m_displayMetricsAvailableHeightPixels = 0;
private static double m_displayMetricsXDpi = .0; private static double m_displayMetricsXDpi = .0;
private static double m_displayMetricsYDpi = .0; private static double m_displayMetricsYDpi = .0;
private static double m_displayMetricsScaledDensity = 1.0; private static double m_displayMetricsScaledDensity = 1.0;
@ -480,8 +482,10 @@ public class QtNative
res[0] = startQtAndroidPlugin(qtParams, environment); res[0] = startQtAndroidPlugin(qtParams, environment);
setDisplayMetrics(m_displayMetricsScreenWidthPixels, setDisplayMetrics(m_displayMetricsScreenWidthPixels,
m_displayMetricsScreenHeightPixels, m_displayMetricsScreenHeightPixels,
m_displayMetricsDesktopWidthPixels, m_displayMetricsAvailableLeftPixels,
m_displayMetricsDesktopHeightPixels, m_displayMetricsAvailableTopPixels,
m_displayMetricsAvailableWidthPixels,
m_displayMetricsAvailableHeightPixels,
m_displayMetricsXDpi, m_displayMetricsXDpi,
m_displayMetricsYDpi, m_displayMetricsYDpi,
m_displayMetricsScaledDensity, m_displayMetricsScaledDensity,
@ -502,8 +506,10 @@ public class QtNative
public static void setApplicationDisplayMetrics(int screenWidthPixels, public static void setApplicationDisplayMetrics(int screenWidthPixels,
int screenHeightPixels, int screenHeightPixels,
int desktopWidthPixels, int availableLeftPixels,
int desktopHeightPixels, int availableTopPixels,
int availableWidthPixels,
int availableHeightPixels,
double XDpi, double XDpi,
double YDpi, double YDpi,
double scaledDensity, double scaledDensity,
@ -519,8 +525,10 @@ public class QtNative
if (m_started) { if (m_started) {
setDisplayMetrics(screenWidthPixels, setDisplayMetrics(screenWidthPixels,
screenHeightPixels, screenHeightPixels,
desktopWidthPixels, availableLeftPixels,
desktopHeightPixels, availableTopPixels,
availableWidthPixels,
availableHeightPixels,
XDpi, XDpi,
YDpi, YDpi,
scaledDensity, scaledDensity,
@ -528,8 +536,10 @@ public class QtNative
} else { } else {
m_displayMetricsScreenWidthPixels = screenWidthPixels; m_displayMetricsScreenWidthPixels = screenWidthPixels;
m_displayMetricsScreenHeightPixels = screenHeightPixels; m_displayMetricsScreenHeightPixels = screenHeightPixels;
m_displayMetricsDesktopWidthPixels = desktopWidthPixels; m_displayMetricsAvailableLeftPixels = availableLeftPixels;
m_displayMetricsDesktopHeightPixels = desktopHeightPixels; m_displayMetricsAvailableTopPixels = availableTopPixels;
m_displayMetricsAvailableWidthPixels = availableWidthPixels;
m_displayMetricsAvailableHeightPixels = availableHeightPixels;
m_displayMetricsXDpi = XDpi; m_displayMetricsXDpi = XDpi;
m_displayMetricsYDpi = YDpi; m_displayMetricsYDpi = YDpi;
m_displayMetricsScaledDensity = scaledDensity; m_displayMetricsScaledDensity = scaledDensity;
@ -785,13 +795,13 @@ public class QtNative
}); });
} }
private static void setFullScreen(final boolean fullScreen) private static void setSystemUiVisibility(final int systemUiVisibility)
{ {
runAction(new Runnable() { runAction(new Runnable() {
@Override @Override
public void run() { public void run() {
if (m_activityDelegate != null) { if (m_activityDelegate != null) {
m_activityDelegate.setFullScreen(fullScreen); m_activityDelegate.setSystemUiVisibility(systemUiVisibility);
} }
updateWindow(); updateWindow();
} }
@ -1162,8 +1172,10 @@ public class QtNative
// screen methods // screen methods
public static native void setDisplayMetrics(int screenWidthPixels, public static native void setDisplayMetrics(int screenWidthPixels,
int screenHeightPixels, int screenHeightPixels,
int desktopWidthPixels, int availableLeftPixels,
int desktopHeightPixels, int availableTopPixels,
int availableWidthPixels,
int availableHeightPixels,
double XDpi, double XDpi,
double YDpi, double YDpi,
double scaledDensity, double scaledDensity,

View File

@ -115,7 +115,7 @@ public class QtServiceDelegate
QtNative.setService(m_service, this); QtNative.setService(m_service, this);
QtNative.setClassLoader(classLoader); QtNative.setClassLoader(classLoader);
QtNative.setApplicationDisplayMetrics(10, 10, 10, 10, 120, 120, 1.0, 1.0); QtNative.setApplicationDisplayMetrics(10, 10, 0, 0, 10, 10, 120, 120, 1.0, 1.0);
if (loaderParams.containsKey(STATIC_INIT_CLASSES_KEY)) { if (loaderParams.containsKey(STATIC_INIT_CLASSES_KEY)) {
for (String className: loaderParams.getStringArray(STATIC_INIT_CLASSES_KEY)) { for (String className: loaderParams.getStringArray(STATIC_INIT_CLASSES_KEY)) {

View File

@ -248,8 +248,8 @@ namespace QtAndroidInput
break; break;
} }
const int dw = desktopWidthPixels(); const int dw = availableWidthPixels();
const int dh = desktopHeightPixels(); const int dh = availableHeightPixels();
QWindowSystemInterface::TouchPoint touchPoint; QWindowSystemInterface::TouchPoint touchPoint;
touchPoint.id = id; touchPoint.id = id;
touchPoint.pressure = pressure; touchPoint.pressure = pressure;

View File

@ -111,8 +111,8 @@ static int m_surfaceId = 1;
static QAndroidPlatformIntegration *m_androidPlatformIntegration = nullptr; static QAndroidPlatformIntegration *m_androidPlatformIntegration = nullptr;
static int m_desktopWidthPixels = 0; static int m_availableWidthPixels = 0;
static int m_desktopHeightPixels = 0; static int m_availableHeightPixels = 0;
static double m_scaledDensity = 0; static double m_scaledDensity = 0;
static double m_density = 1.0; static double m_density = 1.0;
@ -155,14 +155,14 @@ namespace QtAndroid
: 0; : 0;
} }
int desktopWidthPixels() int availableWidthPixels()
{ {
return m_desktopWidthPixels; return m_availableWidthPixels;
} }
int desktopHeightPixels() int availableHeightPixels()
{ {
return m_desktopHeightPixels; return m_availableHeightPixels;
} }
double scaledDensity() double scaledDensity()
@ -200,22 +200,9 @@ namespace QtAndroid
return m_serviceObject; return m_serviceObject;
} }
void showStatusBar() void setSystemUiVisibility(SystemUiVisibility uiVisibility)
{ {
if (m_statusBarShowing) QJNIObjectPrivate::callStaticMethod<void>(m_applicationClass, "setSystemUiVisibility", "(I)V", jint(uiVisibility));
return;
QJNIObjectPrivate::callStaticMethod<void>(m_applicationClass, "setFullScreen", "(Z)V", false);
m_statusBarShowing = true;
}
void hideStatusBar()
{
if (!m_statusBarShowing)
return;
QJNIObjectPrivate::callStaticMethod<void>(m_applicationClass, "setFullScreen", "(Z)V", true);
m_statusBarShowing = false;
} }
jobject createBitmap(QImage img, JNIEnv *env) jobject createBitmap(QImage img, JNIEnv *env)
@ -620,35 +607,33 @@ static void setSurface(JNIEnv *env, jobject /*thiz*/, jint id, jobject jSurface,
} }
static void setDisplayMetrics(JNIEnv */*env*/, jclass /*clazz*/, static void setDisplayMetrics(JNIEnv */*env*/, jclass /*clazz*/,
jint widthPixels, jint heightPixels, jint screenWidthPixels, jint screenHeightPixels,
jint desktopWidthPixels, jint desktopHeightPixels, jint availableLeftPixels, jint availableTopPixels,
jint availableWidthPixels, jint availableHeightPixels,
jdouble xdpi, jdouble ydpi, jdouble xdpi, jdouble ydpi,
jdouble scaledDensity, jdouble density) jdouble scaledDensity, jdouble density)
{ {
// Android does not give us the correct screen size for immersive mode, but m_availableWidthPixels = availableWidthPixels;
// the surface does have the right size m_availableHeightPixels = availableHeightPixels;
widthPixels = qMax(widthPixels, desktopWidthPixels);
heightPixels = qMax(heightPixels, desktopHeightPixels);
m_desktopWidthPixels = desktopWidthPixels;
m_desktopHeightPixels = desktopHeightPixels;
m_scaledDensity = scaledDensity; m_scaledDensity = scaledDensity;
m_density = density; m_density = density;
QMutexLocker lock(&m_platformMutex); QMutexLocker lock(&m_platformMutex);
if (!m_androidPlatformIntegration) { if (!m_androidPlatformIntegration) {
QAndroidPlatformIntegration::setDefaultDisplayMetrics(desktopWidthPixels, QAndroidPlatformIntegration::setDefaultDisplayMetrics(availableLeftPixels,
desktopHeightPixels, availableTopPixels,
qRound(double(widthPixels) / xdpi * 25.4), availableWidthPixels,
qRound(double(heightPixels) / ydpi * 25.4), availableHeightPixels,
widthPixels, qRound(double(screenWidthPixels) / xdpi * 25.4),
heightPixels); qRound(double(screenHeightPixels) / ydpi * 25.4),
screenWidthPixels,
screenHeightPixels);
} else { } else {
m_androidPlatformIntegration->setDisplayMetrics(qRound(double(widthPixels) / xdpi * 25.4), m_androidPlatformIntegration->setPhysicalSize(qRound(double(screenWidthPixels) / xdpi * 25.4),
qRound(double(heightPixels) / ydpi * 25.4)); qRound(double(screenHeightPixels) / ydpi * 25.4));
m_androidPlatformIntegration->setScreenSize(widthPixels, heightPixels); m_androidPlatformIntegration->setScreenSize(screenWidthPixels, screenHeightPixels);
m_androidPlatformIntegration->setDesktopSize(desktopWidthPixels, desktopHeightPixels); m_androidPlatformIntegration->setAvailableGeometry(QRect(availableLeftPixels, availableTopPixels,
availableWidthPixels, availableHeightPixels));
} }
} }
@ -774,7 +759,7 @@ static JNINativeMethod methods[] = {
{"quitQtCoreApplication", "()V", (void *)quitQtCoreApplication}, {"quitQtCoreApplication", "()V", (void *)quitQtCoreApplication},
{"terminateQt", "()V", (void *)terminateQt}, {"terminateQt", "()V", (void *)terminateQt},
{"waitForServiceSetup", "()V", (void *)waitForServiceSetup}, {"waitForServiceSetup", "()V", (void *)waitForServiceSetup},
{"setDisplayMetrics", "(IIIIDDDD)V", (void *)setDisplayMetrics}, {"setDisplayMetrics", "(IIIIIIDDDD)V", (void *)setDisplayMetrics},
{"setSurface", "(ILjava/lang/Object;II)V", (void *)setSurface}, {"setSurface", "(ILjava/lang/Object;II)V", (void *)setSurface},
{"updateWindow", "()V", (void *)updateWindow}, {"updateWindow", "()V", (void *)updateWindow},
{"updateApplicationState", "(I)V", (void *)updateApplicationState}, {"updateApplicationState", "(I)V", (void *)updateApplicationState},

View File

@ -77,8 +77,8 @@ namespace QtAndroid
void bringChildToBack(int surfaceId); void bringChildToBack(int surfaceId);
QWindow *topLevelWindowAt(const QPoint &globalPos); QWindow *topLevelWindowAt(const QPoint &globalPos);
int desktopWidthPixels(); int availableWidthPixels();
int desktopHeightPixels(); int availableHeightPixels();
double scaledDensity(); double scaledDensity();
double pixelDensity(); double pixelDensity();
JavaVM *javaVM(); JavaVM *javaVM();
@ -88,8 +88,13 @@ namespace QtAndroid
jobject activity(); jobject activity();
jobject service(); jobject service();
void showStatusBar(); // Keep synchronized with flags in ActivityDelegate.java
void hideStatusBar(); enum SystemUiVisibility {
SYSTEM_UI_VISIBILITY_NORMAL = 0,
SYSTEM_UI_VISIBILITY_FULLSCREEN = 1,
SYSTEM_UI_VISIBILITY_TRANSLUCENT = 2
};
void setSystemUiVisibility(SystemUiVisibility uiVisibility);
jobject createBitmap(QImage img, JNIEnv *env = 0); jobject createBitmap(QImage img, JNIEnv *env = 0);
jobject createBitmap(int width, int height, QImage::Format format, JNIEnv *env); jobject createBitmap(int width, int height, QImage::Format format, JNIEnv *env);

View File

@ -82,12 +82,9 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
int QAndroidPlatformIntegration::m_defaultGeometryWidth = 320; QSize QAndroidPlatformIntegration::m_defaultScreenSize = QSize(320, 455);
int QAndroidPlatformIntegration::m_defaultGeometryHeight = 455; QRect QAndroidPlatformIntegration::m_defaultAvailableGeometry = QRect(0, 0, 320, 455);
int QAndroidPlatformIntegration::m_defaultScreenWidth = 320; QSize QAndroidPlatformIntegration::m_defaultPhysicalSize = QSize(50, 71);
int QAndroidPlatformIntegration::m_defaultScreenHeight = 455;
int QAndroidPlatformIntegration::m_defaultPhysicalSizeWidth = 50;
int QAndroidPlatformIntegration::m_defaultPhysicalSizeHeight = 71;
Qt::ScreenOrientation QAndroidPlatformIntegration::m_orientation = Qt::PrimaryOrientation; Qt::ScreenOrientation QAndroidPlatformIntegration::m_orientation = Qt::PrimaryOrientation;
Qt::ScreenOrientation QAndroidPlatformIntegration::m_nativeOrientation = Qt::PrimaryOrientation; Qt::ScreenOrientation QAndroidPlatformIntegration::m_nativeOrientation = Qt::PrimaryOrientation;
@ -180,9 +177,9 @@ QAndroidPlatformIntegration::QAndroidPlatformIntegration(const QStringList &para
m_primaryScreen = new QAndroidPlatformScreen(); m_primaryScreen = new QAndroidPlatformScreen();
QWindowSystemInterface::handleScreenAdded(m_primaryScreen); QWindowSystemInterface::handleScreenAdded(m_primaryScreen);
m_primaryScreen->setPhysicalSize(QSize(m_defaultPhysicalSizeWidth, m_defaultPhysicalSizeHeight)); m_primaryScreen->setPhysicalSize(m_defaultPhysicalSize);
m_primaryScreen->setSize(QSize(m_defaultScreenWidth, m_defaultScreenHeight)); m_primaryScreen->setSize(m_defaultScreenSize);
m_primaryScreen->setAvailableGeometry(QRect(0, 0, m_defaultGeometryWidth, m_defaultGeometryHeight)); m_primaryScreen->setAvailableGeometry(m_defaultAvailableGeometry);
m_mainThread = QThread::currentThread(); m_mainThread = QThread::currentThread();
@ -281,6 +278,7 @@ bool QAndroidPlatformIntegration::hasCapability(Capability cap) const
case ThreadedOpenGL: return !needsBasicRenderloopWorkaround() && QtAndroid::activity(); case ThreadedOpenGL: return !needsBasicRenderloopWorkaround() && QtAndroid::activity();
case RasterGLSurface: return QtAndroid::activity(); case RasterGLSurface: return QtAndroid::activity();
case TopStackedNativeChildWindows: return false; case TopStackedNativeChildWindows: return false;
case MaximizeUsingFullscreenGeometry: return true;
default: default:
return QPlatformIntegration::hasCapability(cap); return QPlatformIntegration::hasCapability(cap);
} }
@ -435,20 +433,19 @@ QPlatformTheme *QAndroidPlatformIntegration::createPlatformTheme(const QString &
return 0; return 0;
} }
void QAndroidPlatformIntegration::setDefaultDisplayMetrics(int gw, int gh, int sw, int sh, int screenWidth, int screenHeight) void QAndroidPlatformIntegration::setDefaultDisplayMetrics(int availableLeft,
int availableTop,
int availableWidth,
int availableHeight,
int physicalWidth,
int physicalHeight,
int screenWidth,
int screenHeight)
{ {
m_defaultGeometryWidth = gw; m_defaultAvailableGeometry = QRect(availableLeft, availableTop,
m_defaultGeometryHeight = gh; availableWidth, availableHeight);
m_defaultPhysicalSizeWidth = sw; m_defaultPhysicalSize = QSize(physicalWidth, physicalHeight);
m_defaultPhysicalSizeHeight = sh; m_defaultScreenSize = QSize(screenWidth, screenHeight);
m_defaultScreenWidth = screenWidth;
m_defaultScreenHeight = screenHeight;
}
void QAndroidPlatformIntegration::setDefaultDesktopSize(int gw, int gh)
{
m_defaultGeometryWidth = gw;
m_defaultGeometryHeight = gh;
} }
void QAndroidPlatformIntegration::setScreenOrientation(Qt::ScreenOrientation currentOrientation, void QAndroidPlatformIntegration::setScreenOrientation(Qt::ScreenOrientation currentOrientation,
@ -460,10 +457,9 @@ void QAndroidPlatformIntegration::setScreenOrientation(Qt::ScreenOrientation cur
void QAndroidPlatformIntegration::flushPendingUpdates() void QAndroidPlatformIntegration::flushPendingUpdates()
{ {
m_primaryScreen->setPhysicalSize(QSize(m_defaultPhysicalSizeWidth, m_primaryScreen->setPhysicalSize(m_defaultPhysicalSize);
m_defaultPhysicalSizeHeight)); m_primaryScreen->setSize(m_defaultScreenSize);
m_primaryScreen->setSize(QSize(m_defaultScreenWidth, m_defaultScreenHeight)); m_primaryScreen->setAvailableGeometry(m_defaultAvailableGeometry);
m_primaryScreen->setAvailableGeometry(QRect(0, 0, m_defaultGeometryWidth, m_defaultGeometryHeight));
} }
#ifndef QT_NO_ACCESSIBILITY #ifndef QT_NO_ACCESSIBILITY
@ -473,13 +469,13 @@ QPlatformAccessibility *QAndroidPlatformIntegration::accessibility() const
} }
#endif #endif
void QAndroidPlatformIntegration::setDesktopSize(int width, int height) void QAndroidPlatformIntegration::setAvailableGeometry(const QRect &availableGeometry)
{ {
if (m_primaryScreen) if (m_primaryScreen)
QMetaObject::invokeMethod(m_primaryScreen, "setAvailableGeometry", Qt::AutoConnection, Q_ARG(QRect, QRect(0,0,width, height))); QMetaObject::invokeMethod(m_primaryScreen, "setAvailableGeometry", Qt::AutoConnection, Q_ARG(QRect, availableGeometry));
} }
void QAndroidPlatformIntegration::setDisplayMetrics(int width, int height) void QAndroidPlatformIntegration::setPhysicalSize(int width, int height)
{ {
if (m_primaryScreen) if (m_primaryScreen)
QMetaObject::invokeMethod(m_primaryScreen, "setPhysicalSize", Qt::AutoConnection, Q_ARG(QSize, QSize(width, height))); QMetaObject::invokeMethod(m_primaryScreen, "setPhysicalSize", Qt::AutoConnection, Q_ARG(QSize, QSize(width, height)));

View File

@ -93,8 +93,8 @@ public:
QAndroidPlatformScreen *screen() { return m_primaryScreen; } QAndroidPlatformScreen *screen() { return m_primaryScreen; }
QPlatformOffscreenSurface *createPlatformOffscreenSurface(QOffscreenSurface *surface) const override; QPlatformOffscreenSurface *createPlatformOffscreenSurface(QOffscreenSurface *surface) const override;
virtual void setDesktopSize(int width, int height); void setAvailableGeometry(const QRect &availableGeometry);
virtual void setDisplayMetrics(int width, int height); void setPhysicalSize(int width, int height);
void setScreenSize(int width, int height); void setScreenSize(int width, int height);
bool isVirtualDesktop() { return true; } bool isVirtualDesktop() { return true; }
@ -118,16 +118,17 @@ public:
QStringList themeNames() const override; QStringList themeNames() const override;
QPlatformTheme *createPlatformTheme(const QString &name) const override; QPlatformTheme *createPlatformTheme(const QString &name) const override;
static void setDefaultDisplayMetrics(int gw, int gh, int sw, int sh, int width, int height); static void setDefaultDisplayMetrics(int availableLeft,
static void setDefaultDesktopSize(int gw, int gh); int availableTop,
int availableWidth,
int availableHeight,
int physicalWidth,
int physicalHeight,
int screenWidth,
int screenHeight);
static void setScreenOrientation(Qt::ScreenOrientation currentOrientation, static void setScreenOrientation(Qt::ScreenOrientation currentOrientation,
Qt::ScreenOrientation nativeOrientation); Qt::ScreenOrientation nativeOrientation);
static QSize defaultDesktopSize()
{
return QSize(m_defaultGeometryWidth, m_defaultGeometryHeight);
}
QTouchDevice *touchDevice() const { return m_touchDevice; } QTouchDevice *touchDevice() const { return m_touchDevice; }
void setTouchDevice(QTouchDevice *touchDevice) { m_touchDevice = touchDevice; } void setTouchDevice(QTouchDevice *touchDevice) { m_touchDevice = touchDevice; }
@ -145,12 +146,9 @@ private:
QThread *m_mainThread; QThread *m_mainThread;
static int m_defaultGeometryWidth; static QRect m_defaultAvailableGeometry;
static int m_defaultGeometryHeight; static QSize m_defaultPhysicalSize;
static int m_defaultPhysicalSizeWidth; static QSize m_defaultScreenSize;
static int m_defaultPhysicalSizeHeight;
static int m_defaultScreenWidth;
static int m_defaultScreenHeight;
static Qt::ScreenOrientation m_orientation; static Qt::ScreenOrientation m_orientation;
static Qt::ScreenOrientation m_nativeOrientation; static Qt::ScreenOrientation m_nativeOrientation;

View File

@ -90,8 +90,8 @@ private:
QAndroidPlatformScreen::QAndroidPlatformScreen() QAndroidPlatformScreen::QAndroidPlatformScreen()
: QObject(), QPlatformScreen() : QObject(), QPlatformScreen()
{ {
m_availableGeometry = QRect(0, 0, QAndroidPlatformIntegration::m_defaultGeometryWidth, QAndroidPlatformIntegration::m_defaultGeometryHeight); m_availableGeometry = QAndroidPlatformIntegration::m_defaultAvailableGeometry;
m_size = QSize(QAndroidPlatformIntegration::m_defaultScreenWidth, QAndroidPlatformIntegration::m_defaultScreenHeight); m_size = QAndroidPlatformIntegration::m_defaultScreenSize;
// Raster only apps should set QT_ANDROID_RASTER_IMAGE_DEPTH to 16 // Raster only apps should set QT_ANDROID_RASTER_IMAGE_DEPTH to 16
// is way much faster than 32 // is way much faster than 32
if (qEnvironmentVariableIntValue("QT_ANDROID_RASTER_IMAGE_DEPTH") == 16) { if (qEnvironmentVariableIntValue("QT_ANDROID_RASTER_IMAGE_DEPTH") == 16) {
@ -101,8 +101,7 @@ QAndroidPlatformScreen::QAndroidPlatformScreen()
m_format = QImage::Format_ARGB32_Premultiplied; m_format = QImage::Format_ARGB32_Premultiplied;
m_depth = 32; m_depth = 32;
} }
m_physicalSize.setHeight(QAndroidPlatformIntegration::m_defaultPhysicalSizeHeight); m_physicalSize = QAndroidPlatformIntegration::m_defaultPhysicalSize;
m_physicalSize.setWidth(QAndroidPlatformIntegration::m_defaultPhysicalSizeWidth);
connect(qGuiApp, &QGuiApplication::applicationStateChanged, this, &QAndroidPlatformScreen::applicationStateChanged); connect(qGuiApp, &QGuiApplication::applicationStateChanged, this, &QAndroidPlatformScreen::applicationStateChanged);
} }
@ -294,7 +293,7 @@ void QAndroidPlatformScreen::topWindowChanged(QWindow *w)
if (w != 0) { if (w != 0) {
QAndroidPlatformWindow *platformWindow = static_cast<QAndroidPlatformWindow *>(w->handle()); QAndroidPlatformWindow *platformWindow = static_cast<QAndroidPlatformWindow *>(w->handle());
if (platformWindow != 0) if (platformWindow != 0)
platformWindow->updateStatusBarVisibility(); platformWindow->updateSystemUiVisibility();
} }
} }
@ -334,7 +333,7 @@ void QAndroidPlatformScreen::doRedraw()
} }
QMutexLocker lock(&m_surfaceMutex); QMutexLocker lock(&m_surfaceMutex);
if (m_id == -1 && m_rasterSurfaces) { if (m_id == -1 && m_rasterSurfaces) {
m_id = QtAndroid::createSurface(this, m_availableGeometry, true, m_depth); m_id = QtAndroid::createSurface(this, geometry(), true, m_depth);
AndroidDeadlockProtector protector; AndroidDeadlockProtector protector;
if (!protector.acquire()) if (!protector.acquire())
return; return;

View File

@ -67,26 +67,40 @@ void QAndroidPlatformWindow::lower()
void QAndroidPlatformWindow::raise() void QAndroidPlatformWindow::raise()
{ {
updateStatusBarVisibility(); updateSystemUiVisibility();
platformScreen()->raise(this); platformScreen()->raise(this);
} }
QMargins QAndroidPlatformWindow::safeAreaMargins() const
{
if ((m_windowState & Qt::WindowMaximized) && (window()->flags() & Qt::MaximizeUsingFullscreenGeometryHint)) {
QRect availableGeometry = platformScreen()->availableGeometry();
return QMargins(availableGeometry.left(), availableGeometry.top(),
availableGeometry.right(), availableGeometry.bottom());
} else {
return QPlatformWindow::safeAreaMargins();
}
}
void QAndroidPlatformWindow::setGeometry(const QRect &rect) void QAndroidPlatformWindow::setGeometry(const QRect &rect)
{ {
QPlatformWindow::setGeometry(rect);
QWindowSystemInterface::handleGeometryChange(window(), rect); QWindowSystemInterface::handleGeometryChange(window(), rect);
} }
void QAndroidPlatformWindow::setVisible(bool visible) void QAndroidPlatformWindow::setVisible(bool visible)
{ {
if (visible) if (visible)
updateStatusBarVisibility(); updateSystemUiVisibility();
if (visible) { if (visible) {
if (m_windowState & Qt::WindowFullScreen) if ((m_windowState & Qt::WindowFullScreen)
|| ((m_windowState & Qt::WindowMaximized) && (window()->flags() & Qt::MaximizeUsingFullscreenGeometryHint))) {
setGeometry(platformScreen()->geometry()); setGeometry(platformScreen()->geometry());
else if (m_windowState & Qt::WindowMaximized) } else if (m_windowState & Qt::WindowMaximized) {
setGeometry(platformScreen()->availableGeometry()); setGeometry(platformScreen()->availableGeometry());
} }
}
if (visible) if (visible)
platformScreen()->addWindow(this); platformScreen()->addWindow(this);
@ -107,7 +121,7 @@ void QAndroidPlatformWindow::setWindowState(Qt::WindowStates state)
m_windowState = state; m_windowState = state;
if (window()->isVisible()) if (window()->isVisible())
updateStatusBarVisibility(); updateSystemUiVisibility();
} }
void QAndroidPlatformWindow::setWindowFlags(Qt::WindowFlags flags) void QAndroidPlatformWindow::setWindowFlags(Qt::WindowFlags flags)
@ -143,15 +157,17 @@ void QAndroidPlatformWindow::requestActivateWindow()
platformScreen()->topWindowChanged(window()); platformScreen()->topWindowChanged(window());
} }
void QAndroidPlatformWindow::updateStatusBarVisibility() void QAndroidPlatformWindow::updateSystemUiVisibility()
{ {
Qt::WindowFlags flags = window()->flags(); Qt::WindowFlags flags = window()->flags();
bool isNonRegularWindow = flags & (Qt::Popup | Qt::Dialog | Qt::Sheet) & ~Qt::Window; bool isNonRegularWindow = flags & (Qt::Popup | Qt::Dialog | Qt::Sheet) & ~Qt::Window;
if (!isNonRegularWindow) { if (!isNonRegularWindow) {
if (m_windowState & Qt::WindowFullScreen) if (m_windowState & Qt::WindowFullScreen)
QtAndroid::hideStatusBar(); QtAndroid::setSystemUiVisibility(QtAndroid::SYSTEM_UI_VISIBILITY_FULLSCREEN);
else if (flags & Qt::MaximizeUsingFullscreenGeometryHint)
QtAndroid::setSystemUiVisibility(QtAndroid::SYSTEM_UI_VISIBILITY_TRANSLUCENT);
else else
QtAndroid::showStatusBar(); QtAndroid::setSystemUiVisibility(QtAndroid::SYSTEM_UI_VISIBILITY_NORMAL);
} }
} }

View File

@ -70,9 +70,11 @@ public:
QAndroidPlatformScreen *platformScreen() const; QAndroidPlatformScreen *platformScreen() const;
QMargins safeAreaMargins() const override;
void propagateSizeHints() override; void propagateSizeHints() override;
void requestActivateWindow() override; void requestActivateWindow() override;
void updateStatusBarVisibility(); void updateSystemUiVisibility();
inline bool isRaster() const { inline bool isRaster() const {
if (isForeignWindow()) if (isForeignWindow())
return false; return false;