vote up 0 vote down star
1

I have a main activity which contains a tabhost which holds three other activities and starts them when necessary. On the main activity, I provide an option for selecting a value and based on this I need to change certain aspects. I am aware of Intent communication via the startActivityForResult. I get the value of the selection but now I need to change the content of the active tab... How would I go about doing this? Will I send the data to the running activity or just restart the activity by passing new values?

The activities inside the tabs are just listviews...

flag

77% accept rate

1 Answer

vote up 0 vote down

I'm a little confused; are you saying making a selection in Tab 1 affects what is displayed in Tab 2 and Tab 3? If so, how are they being populated in the first place? If it's an app-wide setting (e.g. sort order) you could use the Android preferences API and then on your onResume and/or onStart, you could make a call to refresh() or some such method, in which you would query the global preferences and render out whatever you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.