Android TabWidget默认样式

时间:2011-09-05 08:55:59

标签: android tabs tabwidget

我遇到的问题听起来像这样: 我有一个TabHost,我想改变它的大小(高度和宽度)所以我用膨胀来做这个

TextView tabContent = (TextView)getLayoutInflater().inflate(R.layout.tab_content,tab.getTabWidget(),false);

和我的xml:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tab_label"
android:layout_width="80dp"
android:layout_height="fill_parent"
android:gravity="center"
android:textSize="14sp"
android:background="@color/green"

/&GT;

这是有效的,但问题是: 如何继承选项卡的旧样式,因为它取消了它。 我的意思是我希望这个是在灰色的背景上,如果我点击它,采取焦点和黄色等等,像默认标签?

由于 Arkde

1 个答案:

答案 0 :(得分:2)

当您选择自定义标签时,不再可以访问标准标签行为。

以下是自定义标签的一个非常好的示例:

http://joshclemm.com/blog/?p=136