TabHost

public class TabHost
extends FrameLayout implements ViewTreeObserver.OnTouchModeChangeListener

java.lang.Object
   ↳ android.view.View
     ↳ android.view.ViewGroup
       ↳ android.widget.FrameLayout
         ↳ android.widget.TabHost


This class was deprecated in API level 30.
new applications should use fragment APIs instead of this class: Use TabLayout and ViewPager instead.

Container for a tabbed window view. This object holds two children: a set of tab labels that the user clicks to select a specific tab, and a FrameLayout object that displays the contents of that page. The individual elements are typically controlled using this container object, rather than setting values on the child elements themselves.

Summary

Nested classes

interface TabHost.OnTabChangeListener

Interface definition for a callback to be invoked when tab changed 

interface TabHost.TabContentFactory

Makes the content of a tab when it is selected. 

class TabHost.TabSpec

A tab has a tab indicator, content, and a tag that is used to keep track of it. 

Inherited XML attributes

Inherited constants

Inherited fields

Public constructors

TabHost(Context context)
TabHost(Context context, AttributeSet attrs)
TabHost(Context context, AttributeSet attrs, int defStyleAttr)
TabHost(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes)

Public methods

void addTab(TabHost.TabSpec tabSpec)

Add a tab.

void clearAllTabs()

Removes all tabs from the tab widget associated with this tab host.

boolean dispatchKeyEvent(KeyEvent event)

Dispatch a key event to the next view on the focus path.

void dispatchWindowFocusChanged(boolean hasFocus)

Called when the window containing this view gains or loses window focus.

CharSequence getAccessibilityClassName()

Return the class name of this object to be used for accessibility purposes.

int getCurrentTab()

Returns the current tab.

String getCurrentTabTag()

Returns the tag for the current tab.

View getCurrentTabView()

Returns the view for the current tab.

View getCurrentView()
FrameLayout getTabContentView()

Get the FrameLayout which holds tab content

TabWidget getTabWidget()
TabHost.TabSpec newTabSpec(String tag)

Creates a new TabSpec associated with this tab host.

void onTouchModeChanged(boolean isInTouchMode)

Callback method to be invoked when the touch mode changes.

void setCurrentTab(int index)
void setCurrentTabByTag(String tag)

Sets the current tab based on its tag.

void setOnTabChangedListener(TabHost.OnTabChangeListener l)

Register a callback to be invoked when the selected state of any of the items in this list changes

void setup()

Call setup() before adding tabs if loading TabHost using findViewById().

void setup(LocalActivityManager activityGroup)

If you are using TabSpec#setContent(android.content.Intent), this must be called since the activityGroup is needed to launch the local activity.

Inherited methods

Public constructors

TabHost

Added in API level 1
public TabHost (Context context)

Parameters
context Context

TabHost

Added in API level 1
public TabHost (Context context, 
                AttributeSet attrs)

Parameters
context Context

attrs AttributeSet

TabHost

Added in API level 1
public TabHost (Context context, 
                AttributeSet attrs, 
                int defStyleAttr)

Parameters
context Context

attrs AttributeSet

defStyleAttr int

TabHost

Added in API level 1
public TabHost (Context context, 
                AttributeSet attrs, 
                int defStyleAttr, 
                int defStyleRes)

Parameters
context Context

attrs AttributeSet

defStyleAttr int

defStyleRes int

Public methods

addTab

Added in API level 1
public void addTab (TabHost.TabSpec tabSpec)

Add a tab.

Parameters
tabSpec TabHost.TabSpec: Specifies how to create the indicator and content.

Throws
IllegalArgumentException If the passed tab spec has null indicator strategy and / or null content strategy.

clearAllTabs

Added in API level 1
public void clearAllTabs ()

Removes all tabs from the tab widget associated with this tab host.

dispatchKeyEvent

Added in API level 1
public boolean dispatchKeyEvent (KeyEvent event)

Dispatch a key event to the next view on the focus path. This path runs from the top of the view tree down to the currently focused view. If this view has focus, it will dispatch to itself. Otherwise it will dispatch the next node down the focus path. This method also fires any key listeners.

Parameters
event KeyEvent: The key event to be dispatched.

Returns
boolean True if the event was handled, false otherwise.

dispatchWindowFocusChanged

Added in API level 1
public void dispatchWindowFocusChanged (boolean hasFocus)

Called when the window containing this view gains or loses window focus. ViewGroups should override to route to their children.

Parameters
hasFocus boolean: True if the window containing this view now has focus, false otherwise.

getAccessibilityClassName

Added in API level 23
Deprecated in API level 30
public CharSequence getAccessibilityClassName ()

Return the class name of this object to be used for accessibility purposes. Subclasses should only override this if they are implementing something that should be seen as a completely new class of view when used by accessibility, unrelated to the class it is deriving from. This is used to fill in AccessibilityNodeInfo.setClassName.

Returns
CharSequence

getCurrentTab

Added in API level 1
public int getCurrentTab ()

Returns the current tab.

Returns
int the current tab, may be null if no tab is set as current

getCurrentTabTag

Added in API level 1
public String getCurrentTabTag ()

Returns the tag for the current tab.

Returns
String the tag for the current tab, may be null if no tab is set as current

getCurrentTabView

Added in API level 1
public View getCurrentTabView ()

Returns the view for the current tab.

Returns
View the view for the current tab, may be null if no tab is set as current

getCurrentView

Added in API level 1
public View getCurrentView ()

Returns
View

getTabContentView

Added in API level 1
public FrameLayout getTabContentView ()

Get the FrameLayout which holds tab content

Returns
FrameLayout

getTabWidget

Added in API level 1
public TabWidget getTabWidget ()

Returns
TabWidget

newTabSpec

Added in API level 1
public TabHost.TabSpec newTabSpec (String tag)

Creates a new TabSpec associated with this tab host.

Parameters
tag String: tag for the tab specification, must be non-null

Returns
TabHost.TabSpec This value cannot be null.

Throws
IllegalArgumentException If the passed tag is null

onTouchModeChanged

Added in API level 1
public void onTouchModeChanged (boolean isInTouchMode)

Callback method to be invoked when the touch mode changes.

Parameters
isInTouchMode boolean: True if the view hierarchy is now in touch mode, false otherwise.

setCurrentTab

Added in API level 1
public void setCurrentTab (int index)

Parameters
index int

setCurrentTabByTag

Added in API level 1
public void setCurrentTabByTag (String tag)

Sets the current tab based on its tag.

Parameters
tag String: the tag for the tab to set as current

setOnTabChangedListener

Added in API level 1
public void setOnTabChangedListener (TabHost.OnTabChangeListener l)

Register a callback to be invoked when the selected state of any of the items in this list changes

Parameters
l TabHost.OnTabChangeListener: The callback that will run

setup

Added in API level 1
public void setup ()

Call setup() before adding tabs if loading TabHost using findViewById(). However: You do not need to call setup() after getTabHost() in TabActivity. Example:

mTabHost = (TabHost)findViewById(R.id.tabhost);
 mTabHost.setup();
 mTabHost.addTab(TAB_TAG_1, "Hello, world!", "Tab 1");

setup

Added in API level 1
public void setup (LocalActivityManager activityGroup)

If you are using TabSpec#setContent(android.content.Intent), this must be called since the activityGroup is needed to launch the local activity. This is done for you if you extend TabActivity.

Parameters
activityGroup LocalActivityManager: Used to launch activities for tab content.