Most visited

Recently visited

TabItem

public final class TabItem
extends View

java.lang.Object
   ↳ android.view.View
     ↳ android.support.design.widget.TabItem


TabItem是一个特殊的'视图',它允许你在布局中声明TabLayout标签项。 这个视图实际上并没有添加到TabLayout,它只是一个虚拟的,它允许设置一个标签项目的文本,图标和自定义布局。 有关如何使用它的更多信息,请参见TabLayout。

也可以看看:

Summary

XML attributes

android:icon Icon to display in the tab. 
android:layout A reference to a layout resource to be displayed in the tab. 
android:text Text to display in the tab. 

Inherited XML attributes

From class android.view.View

Inherited constants

From class android.view.View

Inherited fields

From class android.view.View

Public constructors

TabItem(Context context)
TabItem(Context context, AttributeSet attrs)

Inherited methods

From class android.view.View
From class java.lang.Object
From interface android.graphics.drawable.Drawable.Callback
From interface android.view.KeyEvent.Callback
From interface android.view.accessibility.AccessibilityEventSource

XML attributes

android:icon

要在选项卡中显示的图标。

可能是对“ @[+][package:]type/name ”形式的另一个资源或“ @[+][package:]type/name ”形式的主题属性的 ?[package:]type/name

android:layout

要在选项卡中显示的布局资源的引用。

可能是另一种资源的引用,其形式为“ @[+][package:]type/name ”或形式为“一个主题属性 ?[package:]type/name ”。

android:text

要在选项卡中显示的文本。

可能是一个字符串值,使用'\\;' 转义字符如'\\ n'或'\\ uxxxx'作为unicode字符;

Public constructors

TabItem

TabItem (Context context)

Parameters
context Context

TabItem

TabItem (Context context, 
                AttributeSet attrs)

Parameters
context Context
attrs AttributeSet

Hooray!