In my application, Activity A will start a TabActivity, and the TabActivity has some Activity in its content.
tabHost.newTabSpec("tab1").setContent( new Intent(this, ActivityB.class ) ) ...
And ActivityB will get some data from user(i.e pick a contact), and i want ActivityA will get these data. But as you see, it seems I cannot startyActivityForResult and onActivityResult to get result.
So, how can i get data in ActivityA from ActivityB ? Thanks.