Pass the values with the Intent, and extract them. Do you mean, that you want the ListView item as a View???
Then try, ListView.getChildAt(index), you will get the View, but you cannot pass this view via Intents. Think static, though it's not a good idea. -Kumar Bibek http://techdroid.kbeanie.com On Sep 17, 2:55 pm, "RKJ (Android developer)" <[email protected]> wrote: > Hi All, > > I want to get the value of List item from the previous intent. > > Example - > > screen1 - > List View > List Item 1 > List Item 2 > List Item 3 <------- click on this ListView item, > I'm moving to another intent, say screen 2 > List Item 4 > > screen 2 - > Here I want to display the value of List Item 3, > containing name, address, age of students. > > --RKJ -- 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

