Skip to content
QtWS25 Last Chance
  • 0 Votes
    28 Posts
    13k Views
    Y
    @mrjj understood. thank you.
  • Android splash screen Qt 5.5

    Unsolved Mobile and Embedded splash android splashscreen
    2
    1 Votes
    2 Posts
    3k Views
    benlauB
    See this article to get the instruction to create a splash screen without black screen and show immediately: Complete Guide to Making a Splash Screen for your QML Android Application — Medium
  • 0 Votes
    3 Posts
    1k Views
    stackprogramerS
    yes,i succeeded,i use this source in qml for android ,so my problem solved. import QtQuick 2.0 import QtQuick.Window 2.1 Window { id: splash color: "transparent" title: "Splash Window" modality: Qt.ApplicationModal flags: Qt.SplashScreen property int timeoutInterval: 2000 signal timeout x: (Screen.width - splashImage.width) / 2 y: (Screen.height - splashImage.height) / 2 width: splashImage.width height: splashImage.height Image { id: splashImage source: "../shared/images/qt-logo.png" MouseArea { anchors.fill: parent onClicked: Qt.quit() } } Timer { interval: timeoutInterval; running: true; repeat: false onTriggered: { visible = false splash.timeout() } } Component.onCompleted: visible = true }