Hi all,
I need a help: I've got an Activity that I use as splash screen (and
it works fine) and a ListActivity that represents the main application
(and it works fine too).
public class A extends Activity {
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
try {Thread.sleep(5000);} catch (Exception e)
{e.printStackTrace();}
//start(B)
}
}
public class B extends ListActivity {
[...]
}
How can I start the class B after the 5 seconds of pause?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---