All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qt.core.nativeinterface.QAndroidApplication Maven / Gradle / Ivy

There is a newer version: 6.8.0
Show newest version
package io.qt.core.nativeinterface;

import io.qt.*;


/**
 * 

Native interface to a core application on Android

*

Java wrapper for Qt class QNativeInterface::QAndroidApplication

*/ public interface QAndroidApplication extends QtObjectInterface { /** * @hidden *

Implementor class for interface {@link io.qt.core.nativeinterface.QAndroidApplication}

*/ public static class Impl extends QtObject implements io.qt.core.nativeinterface.QAndroidApplication { static { QtJambi_LibraryUtilities.initialize(); } /** *

See QNativeInterface::QAndroidApplication::hideSplashScreen(int)

*/ private native static void hideSplashScreen(int duration); /** *

See QNativeInterface::QAndroidApplication::isActivityContext()

*/ private native static boolean isActivityContext(); /** *

See QNativeInterface::QAndroidApplication::sdkVersion()

*/ private native static int sdkVersion(); /** * Constructor for internal use only. * @param p expected to be null. * @hidden */ @NativeAccess protected Impl(QPrivateConstructor p) { super(p); } /** *

Overloaded function for {@link #hideSplashScreen(int)} * with duration = 0.

*/ private static void hideSplashScreen() { hideSplashScreen((int)0); } } /** *

See QNativeInterface::QAndroidApplication::hideSplashScreen(int)

*/ public static void hideSplashScreen(int duration){ Impl.hideSplashScreen(duration); } /** *

See QNativeInterface::QAndroidApplication::isActivityContext()

*/ public static boolean isActivityContext(){ return Impl.isActivityContext(); } /** *

See QNativeInterface::QAndroidApplication::sdkVersion()

*/ public static int sdkVersion(){ return Impl.sdkVersion(); } /** *

Overloaded function for {@link #hideSplashScreen(int)} * with duration = 0.

*/ public static void hideSplashScreen() { hideSplashScreen((int)0); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy