安卓:如何为选项卡主机和选项卡添加样式或背景



就像Android联系人中的选项卡一样,我想添加样式(或者可能是背景或我不知道的东西)如何?

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
    </LinearLayout>
</TabHost>

你能告诉我在哪里可以找到一个好的背景或标签,因为我不擅长设计:)

在这里,您几乎拥有有关选项卡的所有内容。适用于安卓 1.6 及更高版本:http://joshclemm.com/blog/?p=136

您必须在 TabSpec 上调用 setIndicator,并向其传递视图而不仅仅是文本。然后,您可以使用选择器等自定义该视图。

相关内容

  • 没有找到相关文章

最新更新