Questions tagged [splash-screen]

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.

3668 questions
1
vote
1 answer

react-native splash screen setup

I tried many different plugins and instruction to do splash screen but I get error when I change or try to setup android-manifest or my splash screen style, can anyone help me with step by step exactly to setup a splash screen or a video as tutorial…
1
vote
0 answers

Can't remove custom splash screen

I made a splash screen for my android app - therefore I followed the 3 steps described here https://stackoverflow.com/a/15832037/7589266 As I didn't like the result, I directly reversed the 3 steps. But the splash screen still showed up.…
10jo1094
  • 21
  • 3
1
vote
1 answer

Meteor mobile-config.js launchScreens

I'm creating the splash images for my app but I've got some questions: Can I create of all them at once? I've seen some repos for this but there are not updated with new sizes (e.g 2048x1536) Would be possible to use the same image for different…
Dani
  • 3,128
  • 2
  • 43
  • 91
1
vote
0 answers

Minimum splash screen required for upload App from Xcode 8.2

I'm working on a very old project, previously it was developed in old version of Xcode (7.3). Now I want to make it compatible to Xcode 8.2 with minimum changes. There is no splash screen for iOS 8 or later. When I add this all the screen will be…
Sunil M.
  • 554
  • 5
  • 17
1
vote
0 answers

React-Native splash screen VERY slow

I am using react native to build an app and for the splash screen I have an image. Running the project through XCode is painfully slow. I was wondering is this a normal occurrence, or is there ways to speed up the load time like compressing the…
user2026178
  • 308
  • 2
  • 4
  • 21
1
vote
2 answers

How to add the UIButton present in storyboard to the top of AVPlayer in iOS?

I am doing the implementation of video splash similar to Uber in my application. I had added two buttons in the storyboard at the bottom part with equal spacing in storyboard. Now i am adding AVPlayer to play a video present in NSBundle. While…
Jessica thompson
  • 407
  • 2
  • 8
  • 20
1
vote
0 answers

Xamarin Forms | Center the splash screen | iOS

Whenever I load up my app with a custom splash screen, the screen is always not centered; it is always half off the screen to the right. When I adjust it for the iPhone 5s, all of the other phone types have the screen off center. Is there a certain…
1
vote
1 answer

background drawable for using layer-list not wrapping the parent screen

I am trying to re-create a splash screen to conform to Google standard. I tried creating a background drawable for my splash screen which I'll be setting in theme itself. But I am looking for a way to make the bitmap match the parent. Below is my…
Cistem
  • 133
  • 1
  • 2
  • 11
1
vote
1 answer

Scrapy with Splash: no module named scrapy_splash

I'm trying to learn how to work with splash for scrapy. I'm doing this tutorial: https://github.com/scrapy-plugins/scrapy-splash. I've created a scrapy project. When I run: $ scrapy crawl spider1 everything works fine. However, when I add to my…
titusAdam
  • 779
  • 1
  • 16
  • 35
1
vote
1 answer

Extended splash screen in Windows 10 UWP?

I have created an extended splash screen for Windows 10 UWP app using following XAML and C# Code. XAML Code
Kinjan Bhavsar
  • 1,439
  • 28
  • 58
1
vote
1 answer

Angular app displays black screen after splash screen in iOS

I have built an Angular app for Android and iOS. It also uses jQuery and jStorage. It's a Cordova app built using Visual Studio 14. I have added the statusbar and splashscreen plugins to config.xml. I have set fullscreen to Yes. I have created all…
Yvonne Aburrow
  • 2,602
  • 1
  • 17
  • 47
1
vote
2 answers

How to load array of images with custom delay into splash screen Swift 3 Xcode 8?

I want to load an array of images before the app show its views to user, with a custom delay for example 5 milliseconds . any help ?? I've used UIImageView in UIViewController and this is my code: import UIKit class CustomViewController:…
MEH
  • 1,777
  • 3
  • 15
  • 34
1
vote
1 answer

Adding splash screen using FFMPEG

everyone! I'm trying to add a splash screen to fade out after 2 seconds into a video using FFMPEG. I'm using the following command: ffmpeg -loop 1 -framerate 2 -t 2 -i image.png \ -i video.mp4 \ -filter_complex…
mvalencaa
  • 451
  • 1
  • 6
  • 16
1
vote
1 answer

Ionic splash screen not visible

I have created an ionic application ,even the default ionic splash screen is not visible. I have added png files for both icon and the splash screen and issued the command 'ionic resources', even though it does not show up the splash screen. Even…
1
vote
1 answer

c# communication between splashscreen and mainform into different thread

I've found that example (Communicate between two windows forms in C#) that works fine but not when the two forms are in different thread. I've got an "System.NullReferenceException" at line 20 in MainForm (this.splashy.LabelText = i;) The point of…