package ch.maden.dm002; import android.app.Activity; import android.os.Bundle; public class Splash 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 { } catch (InterruptedException e) { } finally { } } }; timer.start (); } }