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.
0
votes
0answers
9 views
Activity lifecycle slow Android
I'm developing an Android app and I have two activities with the only purpose of showing a splash screen and starting another activity. Both end in this way (a callback in onCreate):
...
1
vote
1answer
20 views
ExtJS4 splash screen app.js returns error
I have a initially long loading app, so I tried making a splash screen. It "almost" works perfectly. I'm getting the following error: Uncaught TypeError: Cannot read property 'style' of undefined ...
0
votes
1answer
19 views
How to map three Websites under one domain to their folders with mod_rewrite only?
I have a project that has a splash page that points to two separate sites. The sites are hosted on the same server and they should be in separate folders for better maintenance.
The folder structure ...
0
votes
1answer
11 views
Access 2007 - Splash Screen Error
I had a splash screen created for my Access 2007 database, but the decision was made not to have a splash screen. I deleted it, but now every time I start the database up I get an error that says the ...
0
votes
0answers
18 views
Splash screen fixed after click on push notification when app is closed (ios)
When I click on the banner of a remote notification of my app as this is closed, the app is launched but remains fixed on the splash screen. Which does not happen when I open the app normally or when ...
0
votes
1answer
22 views
Android splash screen appears after phone call
In my app, I am giving the user the option to call someone using ACTION_CALL. After the call is finished, the user is brought back to the app where they left off but the splash screen appears. I do ...
0
votes
1answer
45 views
How to stop a Splash Screen with a click before the end?
I created an activity splashScreen in my application.
This works very well with animation is my code :
public class SpalshScreenActivity extends Activity {
private static final int STOPSPLASH = 0;
...
0
votes
2answers
30 views
VB.Net Closing startup form kills application
Hi i make a form that fades in then fades out and loads another form up.
when the new form has loaded it closes the the start up form. Problem is when it closes this start up form it kills my ...
0
votes
0answers
28 views
AS3 Mobile Splash Screen Sound
Creating a project using AS3, have my splash screen files set up. Curious to know if it's possible to play a sound while the splash screen is up?
Cheers.
1
vote
2answers
24 views
Splash screen for Android tab bar application
I have created the android application with tabhost. In this application, I am having the 4 tabs and each one contains their separate webview. For this application, I want to add SplashScreen for the ...
0
votes
3answers
47 views
Non-4-inch apps top-aligned when new splash included
Apple is now requiring a retina and 4-inch display Splash page (i.e. the "Default-568h@2x.png") for all apps to be submitted, which is fine. However, when I include that and then do another build, ...
1
vote
0answers
69 views
iOS Localize Splash Screen in Xcode 4.6
I found a bug in Xcode 4.6 during the App Store submission process.
The problem is from May 1, 2013, Apple reject applications that doesn't support retina display and iPhone 5.
To understand if an ...
0
votes
1answer
48 views
VSTO splash screen or progress bar
I have a project that I'm doing with
Microsoft VSTO (office 2013 excel)
I have certain things that make calls that take maybe 10 seconds to come back.
Ideally I would like to display an progress ...
0
votes
1answer
34 views
sharedpreference with splash screen
My app start by splash screen with music , i used sharedpreference to stop music so next time you open the app splash screen still there without music .
im tring to get preferece screen with two ...
0
votes
1answer
29 views
Add GUI control to splash screen of linux
I want to add a button, textbox,... into splash screen when starting linux and handle the signal of these controls. So how can I do? Please give me some keywords for a solution.
0
votes
1answer
37 views
Splash screen is resizing incorrectly
I am using the style below to show a splash screen in my Xamarin Android application however the image always shows with incorrect sizing. I would like it to resize with the correct dimensions however ...
0
votes
0answers
11 views
Add a splash image to web page
I have a web page which has lots of images and so it loads a bit slower. What I would like to do is show a splash screen for as much time as it takes to load the web page. It is possible to show a ...
0
votes
1answer
75 views
Fetching geo location of a user during splashscreen
I'm trying to fetch geo location of the user when the app launches, i.e, during splash screen.
My approach is to get Geo location from a separate class using asynctask in main activity. I'm new to ...
0
votes
1answer
57 views
Phonegap splashscreen with embedding cordovawebview
I have an app with embedded CordovaWebView. Accroding to inctruction, in that case i shouldn't extend my activity from DriodGap.
public class CordovaViewTestActivity extends Activity implements ...
0
votes
1answer
34 views
How can I pause a Java splash screen from a batch file?
I have the simple batch file code, which is working:
set path=%path%;C:\Program Files (x86)\Java\jdk1.7.0_05\bin
javac C:\Users\Ian\Desktop\batchFileTest\GUI.java
java -splash:images/splashImage.jpg ...
0
votes
1answer
166 views
Alternative to addPreferencesFromResource as its deprecated
I create Preference activity on my app to allow user to start/stop background splash screen music as follow :
public class Prefs extends PreferenceActivity{
@SuppressWarnings("deprecation")
...
0
votes
0answers
33 views
Qt C++ Delaying QNAM sslErrors signal
I have an app with a splash screen that I keep up for 2 seconds using the thread sleep method. In my MianWindow I have a object that listens to the sslErrors signal then calls a slot that displays the ...
0
votes
3answers
62 views
splash screen wont destroy on press of back button
I am fairly new to Android development and have just finished my first application for a university project. I added in a splash screen which works perfectly, it loads before the main menu and then ...
0
votes
0answers
45 views
Android phonegap show splashscreen from external storage
I am able to show splashscreen from drawable folder in my phonegap app using the code as follows:
super.setIntegerProperty("splashscreen", R.drawable.splash);
But what if, I want to load image ...
0
votes
1answer
26 views
MediaElement isn't rendered at ContentRendered
I'm making a splash-screen for my WPF application and it's just a window with a MediaElement at the background and some text over it.
The splash-screen's window is loading the main window at ...
0
votes
0answers
49 views
iOS Custom Splash Screen Within iPad Application
I want to use my own splash screen when opening up a page within my iOS iPad application. It's built using HTML5, Javascript, and CSS3.
Here is my code:
document.addEventListener("deviceready", ...
0
votes
1answer
179 views
Splash screen - winforms vs. WPF ? VS 2012 [duplicate]
In browsing MSDN I saw that one could easily create a Splash-screen by importing an image file & setting the Build Action to 'Splash Screen'.
Is this only for a WPF or can I do the same for a ...
0
votes
2answers
60 views
best example for creating programmatically SplashScreen with text
I need to create a SplashScreen programmatically and add text to it (and change it).
Most examples work with thecommand line parameters.
Are there solutions working without?
0
votes
1answer
122 views
Windows 8 Application: Icons, Splash Screens and Tiles
I am developing an application for multiple Windows 8 Devices using Phonegap 2.5. Could any one please tell the resolutions of icons and the tiles and the splash screens to be used along with the ...
0
votes
0answers
73 views
Phonegap Windows 8 Splash Screen
Is there any utility in phonegap 2.5 which allows me to set up the splash screens for different windows phone devices just as in iOS and Android?
Any help is appreciated.
Thanks,
Ankit.
0
votes
1answer
36 views
How to get rid of the top header
How can I get rid of the top header of java containning the close button,minimize and maximize?
I want to make a plane Panel with no top header for loading of my program.
Like this
Image here
I ...
1
vote
1answer
35 views
Trigger.io: Splash screen shows too long when opening
In our application, it has only js files, one index.html file, and one ajax request for our initial load, well and some images for our application.
But it takes 7 seconds for the splash image to ...
0
votes
1answer
111 views
how to set android splash screen using config.xml of cordova2.6
I am using cordova2.6 for my app. I can set splash screen using the SplashScreen api comes with cordova. That works fine too but when I tried to use
<gap:splash src="splash/android/ldpi.png" ...
0
votes
2answers
34 views
Need a div only to display once every session
I am trying to figure out how to make a certain div to show up once each time a person goes on my website. I have seen two ways of doing this using javascript and php but no success.
Here is my code, ...
2
votes
1answer
51 views
ScrollView Page Indicators not appearing
I am new to IOS so please help me guide on this question.
I am working on three views which open three different images connected by scroll view and pagination. I am using XIB to get the pagination ...
0
votes
0answers
75 views
Windows 8 app stuck on extended splash
Created all of my apps pages but I am stuck on the extended splash page. Tried multiple methods but all of them leave me where I am still looking at my splash page load. And after the splash page is ...
0
votes
1answer
35 views
Run one class and then another
I have just made a splash screen class and it all works perfect. I also have anther class which is my game class. Now I just want to know how do I make it so when the user runs the game class in the ...
0
votes
3answers
88 views
How to make a splash screen for GUI?
Hi there I'm new to GUIs in Java and was trying to make a splash screen or an image appear for 3 seconds. Then after that it it will go onto my main program. Does anyone have an ideas how to do this ...
0
votes
1answer
32 views
Videoplayer doesn't play video in splah screen
I have a splahs screen in my application and i am playing a video on that activity. But in some Android versions ( i mean old ) the video doesnt play. i dont know what to do..
here is some of my code ...
0
votes
3answers
209 views
Splash Screen on Android using Worklight
I am using Worklight 5.0.6, I am facing an issue on adding the splash screen code in android.
Below is the code I used
public void onCreate(Bundle savedInstanceState){
...
1
vote
1answer
117 views
c#.net splash screen loading
I'm developing a C#.NET (4.0) WinForms application. On startup I want to have a splash screen that fills a series of datagridviews on a different form.
At the moment the main form loads that data ...
1
vote
1answer
77 views
Android splashscreen and password
I'm trying to add a password (I don't it with alertDialog) and a splashscreen (were is my problem) the password works when it asks but before that I get a crash cause of the splashscreen that dosen't ...
0
votes
1answer
61 views
How do I use SplashScreen without throwing a NullPointerException?
No matter what I try, SplashScreen.getSplashScreen() is always null.
From searching online I see that this is a common issue, and that it has something to do with not giving the SplashScreen an ...
0
votes
0answers
61 views
App closes when long-running code is executed during splash
Some months ago, I asked a question about making a splash screen with long-running code on monotouch.
Splash screen with heavy codes in monotouch
I followed the answer. Now the question is, when I ...
1
vote
3answers
151 views
How to add these three files properly?“Default.png, Default-568h@2x.png, Default@2x.png” for universal app for iPhone/iPad?
I added "Default.png, Default-568h@2x.png, Default@2x.png" these three files in my universal project for splash image, I have three diffrent image and the resolution exactly the same as mention in ...
0
votes
2answers
113 views
Error on loading maps after splash screen
I've got a typical problem here. I've tried loading Android maps successfully and also tried loading splash screens successfully.
Now when i try to load maps after a splash screen i get the following ...
0
votes
1answer
43 views
completely silent (or custom) boot for Linux appliance
I am working on an appliance that runs on Linux (Ubuntu 10.04 for now) and x86-64 Intel based PC. I need to completely customize the boot screens - no BIOS messages, and either (a) no screen output ...
0
votes
1answer
94 views
Can't close AlertDialog using timer, custom view and Xamarin
I want to make a splash screen using AlertDialog.Builder, a custom view and a timer.
I'm using Xamarin.Android - i don't have the 'dismiss' method it seems, i can call 'dispose' but the alertDialog ...
0
votes
3answers
75 views
Android app installed but won't run
I started a new application and after settling my issues I started to make it. In the process I made a simple splash screen, but when I start the emulator it installs and won't run.
XML manifest
...
0
votes
1answer
197 views
Background image on Windows 8 App Splash screen
Is there a way to replace the background color of a Windows store application splash screen with a background image ? (I am not speaking of the extended splash screen but about the fixed/first one)
...


