public class TabHost.TabSpec
extends Object
java.lang.Object | |
↳ | android.widget.TabHost.TabSpec |
选项卡包含选项卡指示符,内容和用于跟踪它的标记。 此构建器可帮助您在这些选项中进行选择 对于标签指示器,您的选择是:1)设置标签2)设置标签和图标对于标签内容,您的选择是:1) View
2) TabHost.TabContentFactory
,创建View
内容。 3)一个Intent
,启动一个Activity
。
Public methods |
|
---|---|
String |
getTag() |
TabHost.TabSpec |
setContent(Intent intent) 指定一个用来启动活动作为选项卡内容的意图。 |
TabHost.TabSpec |
setContent(TabHost.TabContentFactory contentFactory) 指定一个 |
TabHost.TabSpec |
setContent(int viewId) 指定应该用作选项卡内容的视图的ID。 |
TabHost.TabSpec |
setIndicator(View view) 指定一个视图作为选项卡指示器。 |
TabHost.TabSpec |
setIndicator(CharSequence label) 指定一个标签作为选项卡指示器。 |
TabHost.TabSpec |
setIndicator(CharSequence label, Drawable icon) 指定一个标签和图标作为选项卡指示器。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
TabHost.TabSpec setContent (Intent intent)
指定一个用来启动活动作为选项卡内容的意图。
Parameters | |
---|---|
intent |
Intent
|
Returns | |
---|---|
TabHost.TabSpec |
TabHost.TabSpec setContent (TabHost.TabContentFactory contentFactory)
指定一个 TabHost.TabContentFactory
用于创建选项卡的内容。
Parameters | |
---|---|
contentFactory |
TabHost.TabContentFactory
|
Returns | |
---|---|
TabHost.TabSpec |
TabHost.TabSpec setContent (int viewId)
指定应该用作选项卡内容的视图的ID。
Parameters | |
---|---|
viewId |
int
|
Returns | |
---|---|
TabHost.TabSpec |
TabHost.TabSpec setIndicator (View view)
指定一个视图作为选项卡指示器。
Parameters | |
---|---|
view |
View
|
Returns | |
---|---|
TabHost.TabSpec |
TabHost.TabSpec setIndicator (CharSequence label)
指定一个标签作为选项卡指示器。
Parameters | |
---|---|
label |
CharSequence
|
Returns | |
---|---|
TabHost.TabSpec |
TabHost.TabSpec setIndicator (CharSequence label, Drawable icon)
指定一个标签和图标作为选项卡指示器。
Parameters | |
---|---|
label |
CharSequence
|
icon |
Drawable
|
Returns | |
---|---|
TabHost.TabSpec |