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...
