Currently I have a TabHost implemented with 3 tabs each containing a separate activity. My question is how do I switch between tabs from within one of the activities that is located inside the tab host. I've looked everywhere and have been unsuccessful in finding a real answer to this problem.
|
feedback
|
|
After a long time of battling with this problem I've been able to find a solution to switching tabs when using activity based tabs. In the parent activity class where the tabhost is created I implemented a method like the one below:
Inside of the tab that I would like to be able to switch internally to another tab I created the method below:
If you would like a good example of this code, you can take a look at my MintTrack project here and here. As a side note, please be very careful when deciding whether to use view or activity based TabHost. Activity based tabs are great because they can be separated into there own XML file. Activities can also be organized into there own Java file instead of being cluttered into one. That being said some of the things you would think would be easy become complicated with activity based tabs. Its hard to pass information between tabs without creating overhead. Activity based tabs also use more memory/CPU time as they have the overhead of the activity around each of them. Please consider this and the many more trade offs before diving into using an Activity based TabHost. I know now that I would personally go with a view based TabHost if I ever used them again. | |||||||||||
feedback
|
|
I encountered the same problem. While a single activity for all tabs would be better, sometimes taking the easy way out is the rational choice. To avoid creating a new tab activity when a tab wants to change to another tab, I put this in my AndroidManifest.xml:
Send an intent with the tab you want:
This solution has drawbacks but I'm not clear over the details. Someone else might know enough to point them out. | |||||||||
feedback
|
|
Step #1: Replace the tabs-holding-activities with tabs-holding-views by using a better form of Step #2: Call I have yet to see any benefit to having an | |||||||||||||||||
feedback
|
|
First, I set a method to my main class, which extends TabActivity let's call it "MainActivity"
Then, I add my tab activity class;
It worked for me. | |||
|
feedback
|
| ||||
|
feedback
|
|
I had a slightly different problem and thought I'd add this for anyone else facing a similar situation. I have an activity-based tabbed application and one of the tab activities launches another activity which is not controlled by the tabHost. I needed to have a button on this activity finish() (ie: return back to the main Tab view) and switch to a different tab at the same time. I decided to handle it with a BroadcastReceiver. In the class that sets up the TabHost, I added this class:
..then defined the vars:
..then added to onCreate():
Finally in the new activity when you want to close that activity and switch the tabs, do this:
Of course you could make a method to switch to various tabs by passing the tab index -- but in my case this behavior only occurs in one activity so I decided to keep it simple... | |||
|
feedback
|
|
I just put a Then from any other tab I can do a Works fine for me (but I wish I'd used Fragments from the start.. I was just following the Tab tutorial in the Android documentation and working from there) | |||
|
feedback
|
protected by Community♦ Dec 8 '11 at 10:07
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.