Back to project page app_starter.
The source code is released under:
GNU General Public License
If you think the Android project app_starter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package appname.companyname.com.appname; /* w ww .j a v a 2 s. c o m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import android.view.Menu; import android.view.MenuItem; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import android.widget.ImageView; public class SplashScreen extends Activity { ConnectionDetector mConnectionDetector; Functions mFunctions; public Boolean isConnected = false; private static int SPLASH_TIME_OUT = 4000; private static boolean offline_app = AppContent.offline_app; public int user_reg = 0; private String tag = "AppState"; private ImageView ic_logo; private Animation fade_in; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash_screen); // Set Content View setContentView(R.layout.activity_splash_screen); // Defining Logo ic_logo = (ImageView)findViewById(R.id.splash_ic_logo); fade_in = AnimationUtils.loadAnimation(getApplicationContext(),R.anim.fade_in); ic_logo.startAnimation(fade_in); // Declaring mConnection Detector mConnectionDetector = new ConnectionDetector(getApplicationContext()); // Declaring mFunction mFunctions = new Functions(getApplicationContext()); // Post SplashScreen Time Out new Handler().postDelayed(new Runnable() { @Override public void run() { // Check Internet, User and Form State isConnected = mConnectionDetector.isConnectingToInternet(); if(offline_app){ //Offline mode active } else if (!isConnected){ //Online mode active and connection is not available (No Connection) --> referring to ErrorActivity Intent i = new Intent(SplashScreen.this, Error.class); startActivity(i); finish(); } else { //Online mode active and connection is available --> referring to MyActivity Intent i = new Intent(SplashScreen.this, MyActivity.class); startActivity(i); finish(); } } }, SPLASH_TIME_OUT); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.splash_screen, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }