The splash screen is a rectangular or full screen image which appears while a software product is loading (OS, CAD, game, etc). Often it contains a progress bar, indicating the loading phases.
Questions tagged [splash-screen]
3668 questions
1
vote
1 answer
Splashscreen created with splashscreen plugin for cordova does not appear in Visual Studio 2015
i added the splashscreen plugin in version 4.0.1 to my cordova project in VS2015. But the splashscreen doesn't appear, neither in android nor in ios simulator. What am i doing wrong?
My config.xml looks like this:

Nils H
- 39
- 4
1
vote
2 answers
iPhone splash screen with LandscapeLeft and LandscapeRight orientations
I am trying to use UILaunchImages to provide different images for LandScapeLeft and LandScapeRight Orientation's, but only one of them is getting picked up, can anyone please provide the exact naming convention of UILaunchImages for LandScapeLeft…

abhishek saatal
- 295
- 1
- 3
- 14
1
vote
4 answers
Launch an activity only once after Install
I have QR scanner app. There are 3 activities in the app.
1) Main activity - Button to open camera and start scanning
2) QR activity - Scan a QR code
3) Web Activity - On successful scanning, open a web page in the app
Here, the Main activity and…

SMG
- 95
- 1
- 2
- 11
1
vote
3 answers
Ionic splashscreen not working( Showing the same default icon )
I am trying to add a splashscreen to my ionic app. Here are the steps i followed:
$ionic start splashtest blank
$ionic platform add android
$cordova plugin add cordova-plugin-splashscreen
Now, Updated my icon.png and splash.png to …

Sourav Das
- 982
- 1
- 15
- 40
1
vote
1 answer
NSWindow won't draw immediately after app launch
The problem: Attempting to display a window with text from applicationWillFinishLaunching will NOT draw itself if other processor-intensive non-UI code is immediately called.
Background: I have a helper app that when launched may or may not…

SMGreenfield
- 1,680
- 19
- 35
1
vote
1 answer
Playing sound while displaying a splash screen?
I want to play a sound while my splash screen gets data from the server.
The sound file is not too large. I want something like when you start your computer you hear the MSWinXP welcome sound and that while establishing your account.
How can I do…

BDeveloper
- 1,175
- 6
- 24
- 44
1
vote
1 answer
how to intercept android applying main activity theme upon app launch
I tried to create splash screen following this https://www.bignerdranch.com/blog/splash-screens-the-right-way/, where a custom theme of the main activity is used to show the splash screen.

Bing Qiao
- 451
- 1
- 5
- 14
1
vote
1 answer
Multiple splash screens in Android studio
I am trying to create two splash screens in Android studio. My first splash screen works fine but my second splash screen does not.
How can I create a second splash screen?
Here is My code for the first splash screen below:
MainActivity.java
public…

Lyubomir Ivanov Valchev
- 683
- 2
- 14
- 29
1
vote
0 answers
Getting QSplashScreen to work in my application
There is an example in the documentation providing the following code, which seems to be quite simple :
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPixmap pixmap(":/splash.png");
QSplashScreen splash(pixmap);
…

L. Srd
- 91
- 1
- 4
1
vote
0 answers
Launch image not shown for iPhone on landscape only app
App details are as follows: Universal landscape only app. iOS version iOS 8 onwards. Splash screen loads on iPad but is not loaded on iPhone. Also warning is shown for iPhone 4inch retina image. But asset catalog with iOS 8 and landscape option…

Sayali
- 593
- 3
- 9
- 22
1
vote
1 answer
How do i make a splash screen in Action Extension in IOS
So, I'm trying to create a splash screen for an action extension, since i got some work i would like to do before presenting the app.
How can i do this?
I've added a launch screen in the extension and checked the "Use as launch screen" flag, but it…

Simon k
- 403
- 1
- 5
- 17
1
vote
1 answer
scrapy-splash do not crawl recursively with CrawlerSpider
I have integrated scrapy-splash in my CrawlerSpider process_request in rules like this:
def process_request(self,request):
request.meta['splash']={
'args': {
# set rendering arguments here
'html': 1,
}
…

Khadija Mne
- 31
- 4
1
vote
3 answers
Splash screen thread
So I have a splash screen which will have some time intensive code and I don't want it running in the main thread. I have made some code which should stop the thread and close the form, but it does not work. Any help is welcomed.
Code:
using…

steve
- 107
- 10
1
vote
2 answers
Ionic splash screen doesn't work
I'm trying to show splash screen for my app in Ionic. I've read many articles and tutorials and still nothing... Will it work via browser or only on device? I tried both ways and still no splash screen. Help me guys, I don't know what am I doing…

Damian Hetman
- 372
- 4
- 20
1
vote
1 answer
Change view controller after splash animation finishes
I'm trying to run a splash animation over a black screen when the app is first launched, and then transition into the initial view controller. To do so, I set the launchscreen.storyboard view controller to black, and then in…

dulongj
- 307
- 2
- 17