Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.12
-
None
Description
int main(int argc, char *argv[]) { QApplication a(argc, argv); QPixmap splashpic("qrc:/splash.png"); QSplashScreen splash(splashpic); splash.show(); a.processEvents(); MainWindow w(Q_NULLPTR); w.show(); splash.finish(&w); return a.exec(); }
Just white screen before main window appears. Qt 5.12, Android 7.1.
Isn't this a multiplatform framework? Why this widget doesn't work as other widgets do?