Android how to putExtra to an activity from TabHost activity?
问题 I have a little problem with sending an extra from one activity to another. I have let's say FirstActivity which starts TabActivity , where I have 5 tabs. When I send putExtra() , from FirstActivity to TabActivity , there is no problem, but I need to send that extra to the Activity , which holds first tab of TabHost . I'm using this code : TabActivity.class : int collId = getIntent().getIntExtra("collection_id", 0); Log.i("Collection ID","Collection ID from SingleCollection.class : "+collId);