Re: [android-developers] Need help refresh different activity's when updating the database

2011-02-24 Thread Justin Anderson
Sounds to me like the cleanest approach would be to rewrite it so that each tab is a View instead of an Activity. Combine all the logic of activities A, B, and C into the TabActivity. That way you have a central location for your data and you don't have to read the database to update the other ta

[android-developers] Need help refresh different activity's when updating the database

2011-02-24 Thread Danny S.
Hi, I have a TabActivity with Activity "B" on Tab1 and Activity "C" on Tab2. Both extends Activity "A" where I do the most. They use the same kind of data. Activity B is using data thats state is "active" and Activity C is using data in state "finished". So far so good... Now I have the possibili