You are on page 1of 1

package com.iwademedia.presbytwihymnal; import android.os.Bundle; import android.app.Activity; import android.content.

Intent; public class Main extends Activity { @Override protected void onCreate(Bundle iWadeMediaGhana) { super.onCreate(iWadeMediaGhana); setContentView(R.layout.splash); Thread logoTimer = new Thread(){ public void run(){ try{ sleep(5000); Intent menuIntent = new Intent("android.intent.a ction.MENU"); startActivity(menuIntent); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally{ finish(); } } }; logoTimer.start(); } }

You might also like