Monday, April 9, 2012

Splash Screen in android

Splash Screen


SplaActivity.java


package a.p;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.ImageView;

public class SplaActivity extends Activity implements OnTouchListener {
    /** Called when the activity is first created. */
ImageView imageView1;
protected boolean active = true;
protected int splashTime = 5000; // time to display the splash screen in msjishoammigoz
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash);
        imageView1=(ImageView) findViewById(R.id.imageView1);
        // thread for displaying the 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) {
                    // do nothing
                } finally {
                    finish();
                   
                   startActivity(new Intent("a.p.splashscreen.second"));
                    stop();
                }
            }
        
        };
        splashTread.start();
        imageView1.setOnTouchListener(this);
    }
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
Intent i=new Intent(this,second.class);
startActivity(i);
return false;
}
}
---------------------------------------------------------------

Second.java



package a.p;

import android.app.Activity;
import android.os.Bundle;

public class second  extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}


}
----------------------------------------------------

Manifest.xml



<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="a.p"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="8" />

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".SplaActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".second">
            <intent-filter>
                <action android:name="a.p.splashscreen.second" />   // a.p is package
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

    </application>
</manifest>



No comments :

Post a Comment