package com.mygeopay.wallet; import android.app.Activity; import android.content.Intent; import android.os.Bundle; /** * Created on 08-Oct-15. */ public class SplashScreen extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.splash); Thread timer = new Thread(){ public void run(){ try{ sleep(3000); }catch(InterruptedException e){ e.printStackTrace(); }finally{ Intent openMainActivity= new Intent("com.mygeopay.wallet.WALLETAPPLICATION"); startActivity(openMainActivity); } } }; timer.start(); } @Override protected void onPause() { // TODO Auto-generated method stub super.onPause(); finish(); } }