Re: [android-developers] Going from one view to another
http://developer.android.com/reference/android/content/Intent.html Thanks On Wed, May 9, 2012 at 6:00 PM, Dan Uff wrote: > Hi all: > This may seem like a basic question, but I am brand new to Android > development and can't find this answer, and I am coming from being an > iOS developer. > > How do you go from one view to another? I need the user to select a > button and then go to another screen. > > Thanks, > Dan Uff > Connecting People Software > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to android-developers@googlegroups.com > To unsubscribe from this group, send email to > android-developers+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- Raghav Sood https://market.android.com/developer?pub=Appaholics http://www.appaholics.in/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
Re: [android-developers] Going from one view to another
How do you go from one view to another? I need the user to select a button and then go to another screen. Each screen in Android is an Activity. The way to achieve what you are asking is to create an Intent [object], quoting your target Activity's class, and then start that intent. This link shows how, but also demonstrates that you must remember to have the target activity listed in your manifest: http://stackoverflow.com/questions/736571/using-intent-in-an-android-application-to-show-another-activity -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en
[android-developers] Going from one view to another
Hi all: This may seem like a basic question, but I am brand new to Android development and can't find this answer, and I am coming from being an iOS developer. How do you go from one view to another? I need the user to select a button and then go to another screen. Thanks, Dan Uff Connecting People Software -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en