Im a beginner in Android and I have the following Problem:
I've created a TabHost within two tabs: activity A and activity B.
Activity A consists of a linear Layout with dynamically added checkboxes:
Activity A:
1[ ]
2[ ]
3[x]
4[ ]
5[x]
Activity B consists of an empty linear Layout.
Now I want the checked checkboxes from activity A to be added in activity B:
Activity B:
3[x]
5[x]
These checkboxes should disappear if they were unchecked...
Activity B:
...is empty again.
What technique should be used to do something like that?