原链接:http://developer.android.com/reference/android/widget/TabHost.html

public class

TabHost

extends FrameLayout
implements ViewTreeObserver.OnTouchModeChangeListener
java.lang.Object
  ↳android.view.View

  ↳android.view.ViewGroup


  ↳android.widget.FrameLayout



  ↳android.widget.TabHost
triangle-closed.pngKnown Direct Subclasses

Class Overview


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
interfaceTabHost.OnTabChangeListenerInterface definition for a callback to be invoked when tab changed  








interfaceTabHost.TabContentFactoryMakes the content of a tab when it is selected.








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








[Expand]
Inherited XML Attributes











triangle-closed.pngFrom class android.widget.FrameLayout
triangle-closed.pngFrom class android.view.ViewGroup
triangle-closed.pngFrom class android.view.View
[Expand]
Inherited Constants











triangle-closed.pngFrom class android.view.ViewGroup
triangle-closed.pngFrom class android.view.View
[Expand]
Inherited Fields











triangle-closed.pngFrom class android.view.View
Public Constructors

TabHost(Context context)










TabHost(Context context, AttributeSet attrs)









Public Methods
voidaddTab(TabHost.TabSpec tabSpec)
Add a tab.










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










booleandispatchKeyEvent(KeyEvent event)
Dispatch a key event to the next view on the focus path.










voiddispatchWindowFocusChanged(boolean hasFocus)
Called when the window containing this view gains or loses window focus.










intgetCurrentTab()









StringgetCurrentTabTag()









ViewgetCurrentTabView()









ViewgetCurrentView()









FrameLayoutgetTabContentView()
Get the FrameLayout which holds tab content










TabWidgetgetTabWidget()









TabHost.TabSpecnewTabSpec(String tag)
Get a new TabHost.TabSpec associated with this tab host.










voidonInitializeAccessibilityEvent(AccessibilityEvent event)
Initializes an AccessibilityEvent with information about this View which is the event source.










voidonInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info)
Initializes an AccessibilityNodeInfo with information about this view.










voidonTouchModeChanged(boolean isInTouchMode)
Callback method to be invoked when the touch mode changes.










voidsendAccessibilityEvent(int eventType)
Sends an accessibility event of the given type.










voidsetCurrentTab(int index)









voidsetCurrentTabByTag(String tag)









voidsetOnTabChangedListener(TabHost.OnTabChangeListener l)
Register a callback to be invoked when the selected state of any of the items in this list changes










voidsetup()

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











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










Protected Methods
voidonAttachedToWindow()
This is called when the view is attached to a window.










voidonDetachedFromWindow()
This is called when the view is detached from a window.










[Expand]
Inherited Methods











triangle-closed.png From class android.widget.FrameLayout
triangle-closed.png From class android.view.ViewGroup
triangle-closed.png From class android.view.View
triangle-closed.png From class java.lang.Object
triangle-closed.png From interface android.graphics.drawable.Drawable.Callback
triangle-closed.png From interface android.view.KeyEvent.Callback
triangle-closed.png From interface android.view.ViewManager
triangle-closed.png From interface android.view.ViewParent
triangle-closed.png From interface android.view.ViewTreeObserver.OnTouchModeChangeListener
triangle-closed.png From interface android.view.accessibility.AccessibilityEventSource

Public Constructors


public TabHost(Context context)
Added in API level 1


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


Public Methods


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

Add a tab.

Parameters
tabSpecSpecifies how to create the indicator and content.
public void clearAllTabs()
Added in API level 1

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

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

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
eventThe key event to be dispatched.
Returns
  • True if the event was handled, false otherwise.

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

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

Parameters
hasFocusTrue if the window containing this view now has focus, false otherwise.
public int getCurrentTab()
Added in API level 1


public StringgetCurrentTabTag()
Added in API level 1


public ViewgetCurrentTabView()
Added in API level 1


public ViewgetCurrentView()
Added in API level 1


public FrameLayoutgetTabContentView()
Added in API level 1

Get the FrameLayout which holds tab content

public TabWidgetgetTabWidget()
Added in API level 1


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

Get a new TabHost.TabSpec associated with this tab host.

Parameters
tagrequired tag of tab.
public void onInitializeAccessibilityEvent(AccessibilityEvent event)
Added in API level 14

Initializes an AccessibilityEvent with information about this View which is the event source. In other words, the source of an accessibility event is the view whose state change triggered firing the event.

Example: Setting the password property of an event in addition to properties set by the super implementation:

publicvoid onInitializeAccessibilityEvent(AccessibilityEventevent){
super.onInitializeAccessibilityEvent(event);
event.setPassword(true);
}

If an View.AccessibilityDelegate has been specified via calling setAccessibilityDelegate(AccessibilityDelegate) itsonInitializeAccessibilityEvent(View, AccessibilityEvent) is responsible for handling this call.

Note: Always call the super implementation before adding information to the event, in case the default implementation has basic information to add.


Parameters
eventThe event to initialize.
public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info)
Added in API level 14
Parameters
infoThe instance to initialize.
public void onTouchModeChanged(boolean isInTouchMode)
Added in API level 1

Callback method to be invoked when the touch mode changes.

Parameters
isInTouchModeTrue if the view hierarchy is now in touch mode, false otherwise.
public void sendAccessibilityEvent(int eventType)
Added in API level 4

Sends an accessibility event of the given type. If accessibility is not enabled this method has no effect. The default implementation callsonInitializeAccessibilityEvent(AccessibilityEvent) first to populate information about the event source (this View), then callsdispatchPopulateAccessibilityEvent(AccessibilityEvent) to populate the text content of the event source including its descendants, and last callsrequestSendAccessibilityEvent(View, AccessibilityEvent) on its parent to resuest sending of the event to interested parties.

If an View.AccessibilityDelegate has been specified via calling setAccessibilityDelegate(AccessibilityDelegate) itssendAccessibilityEvent(View, int) is responsible for handling this call.


Parameters
eventTypeThe type of the event to send, as defined by several types from AccessibilityEvent, such as TYPE_VIEW_CLICKED orTYPE_VIEW_HOVER_ENTER.
public void setCurrentTab(int index)
Added in API level 1


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


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

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

Parameters
lThe callback that will run
public void setup()
Added in API level 1


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");


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

If you are using 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
activityGroupUsed to launch activities for tab content.

Protected Methods


protected void onAttachedToWindow()
Added in API level 1

This is called when the view is attached to a window. At this point it has a Surface and will start drawing. Note that this function is guaranteed to be called before onDraw(android.graphics.Canvas), however it may be called any time before the first onDraw -- including before or after onMeasure(int, int).

protected void onDetachedFromWindow()
Added in API level 1

This is called when the view is detached from a window. At this point it no longer has a surface for drawing.