Skip to content Skip to sidebar Skip to footer

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(), fr

Solution 1:

From the child activity you can call getParent().getIntent() to obtain TabActivity's intent, so you don't need to put extra in the way you are doing this.


Post a Comment for "Android How To Putextra To An Activity From Tabhost Activity?"