Monday, February 13, 2012

SplashScreen Example for Android?


public class SplashScreen extends Activity {
    protected boolean _active = true;
    protected int _splashTime = 5000;
   
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(R.layout.splash);
        @SuppressWarnings("unused")
ImageView image = (ImageView) findViewById(R.id.bg_branco);
       
        // thread para mostrar o SplashScreen
        Thread splashTread = new Thread() {
            @Override
            public void run() {
                try {
                    int waited = 0;
                    while(_active && (waited < _splashTime)) {
                        sleep(100);
                        if(_active) {
                            waited += 100;
                        }
                    }
                } catch(InterruptedException e) {
                    // faz nada
                } finally {
                    finish();
                    startActivity(new Intent(SplashScreen.this,NavegadorMultitokyActivity.class));
                    stop();
                }
            }
        };
        splashTread.start();
    }
   
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            _active = false;
        }
        return true;
    }
}


In Manifest write down the following

<activity android:name=".SplashScreen" android:icon="@drawable/ico_app" android:label="@string/app_name">
 <intent-filter>
   <action android:name="android.intent.action.MAIN" />
   <category android:name="android.intent.category.LAUNCHER" />  
 </intent-filter>
</activity>

1 comment: