You might consider the [EMAIL PROTECTED] mailinglist. As for the answer - different screens are Activities in Android. To move from one screen to another, you are technically moving from an activity to another - eg starting a new Activity. Navigating between Activities is done by sending Intents. One way to do it is by calling startActivity(Intent intent) in the first activity. For example yourActivity.startActivity(new Intent(this, NewActivity.class));
Read about Activities here: http://code.google.com/android/reference/android/app/Activity.html and about Intents here: http://code.google.com/android/reference/android/content/Intent.html Tauno On Tue, Oct 28, 2008 at 12:55 PM, Rahul <[EMAIL PROTECTED]> wrote: > > I am Begginer for the Android and I want to Go from One Screen to > Another Screen But i dont undestand How it is possible plz give me a > code for that. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

