What I have done with success in some of my apps is making several parent views that hold each layout within a table layout, and use the menu buttons to change the visibility of the parent view containing the info you want them to see. Since the view is never really closed, it's state is kept. Just use setVisibility(View.GONE) or View.VISIBILE and it should keep everything good.
Just make sure that each button press hides all the other parent views or else you will basically end up with two screens showing one after the other. On Mar 12, 7:21 am, TreKing <[email protected]> wrote: > On Fri, Mar 12, 2010 at 12:28 AM, Prajakta Shitole > <[email protected]>wrote: > > > One of my idea was to store the picture and the text view in the service > > and on click of a menu button navigate to another activity which will > > connect to the service and draw the stored pictures, text views in its > > activity. > > I haven't done anything like this but this seems like what you would want to > do. > > ------------------------------------------------------------------------------------------------- > TreKing - Chicago transit tracking app for Android-powered > deviceshttp://sites.google.com/site/rezmobileapps/treking -- 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

