I have a TabActivity which loads 2 ListActivity in 2 Tabs. When I click on a list item in either of the ListActivity, I want to pass this value back to the TabActivity. What’s the best way to do this? I’m thinking of using a BroadcastReceiver. Any thoughts?
Share
Agree with Javanator. I did it the BroadcastReceiver way and it works. Tedious but it works.