Dear All, I am currently developing a tab based application to learn Android. I have 2 tabs: TAB1 and TAB2.
I created tabs: thats fine: TAB1: is used to browser some files, dats ok as well. The problem is with tab2. TAB2 extends ActivityGroup: Why because i will has multiple activities within it and also different Menus: initially, the screen is empty and on menu i have four menuitems as such: ------------------------------------------------------------------------------------------------------------------------------------------------- <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:title="Edit" android:id="@+id/edit" /> <item android:title="Refresh" android:id="@+id/refresh" /> <item android:title="Next" android:id="@+id/next" /> <item android:title="Previous" android:id="@+id/previous" /> </menu> --------------------------------------------------------------------------------------------------------------------------------------------------------- @Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater menuInflater = getMenuInflater(); menuInflater.inflate(R.menu.inbox_menu, menu); return super.onPrepareOptionsMenu(menu); } -------------------------------------------------------------------------------------------------------------------------------------------------------------- When refresh is clicked i send an SMS to certain KEYWORD and from BroadCastReciever, i have my string data as: 1\[email protected]\nHello\n2\[email protected]\nHello Help me and so on. I parse this data split by \n though i get strange character from the emulator and pass this data to datamodel. This data is used in the ListVIew. Once the listview is populated, when an edit menu item is clicked i need to show checkbox. How do i pefrom all this within this TAB2. Any suggestion as how to procceed. -- 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

