You mean an Intent
Intent intent = new Intent();
intent.SetClass(this, typeof(CLASS_TO_START));
/* if you want some Extras in the Intent */
intent.PutExtra("KEY", "DATA");
StartActivity(intent);
In the Second Activity:
string DataFromFirstIntent = Intent.GetStringExtra("KEY");
More About Intents look here:
http://docs.xamarin.com/android/getting_started/Hello_Multiscreen_Applications?highlight=Intent
OR by Android
http://developer.android.com/reference/android/content/Intent.html
Greetz Enrico
--
View this message in context:
http://mono-for-android.1047100.n5.nabble.com/How-to-navigate-to-anther-page-from-activity1-class-tp5105091p5105412.html
Sent from the Mono for Android mailing list archive at Nabble.com.
_______________________________________________
Monodroid mailing list
[email protected]
UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid