Not sure if this helps but have you tried implementing a class to hold your data? In the listener for your tabbed panes then read or write the data when the tabs are clicked. I think you might want to look at:
http://developer.android.com/reference/android/widget/TabWidget.html and in particular setOnClickListener<http://developer.android.com/reference/android/view/View.html#setOnClickListener%28android.view.View.OnClickListener%29> (View.OnClickListener<http://developer.android.com/reference/android/view/View.OnClickListener.html>l) That should get you started. In practice though you might want to use an SQLiteDB to store your data. Regards, John Goche On Fri, Dec 2, 2011 at 4:36 PM, chowdary nani <[email protected]>wrote: > Hi All, > > In Tabedpane i have 2 tabs.I have to send data from one tab to another > tab. > Please help me how to do this in android. > > > Thanks > Naveen > > -- > 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 -- 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

