1

嗨,我目前正在做一个项目,我需要在屏幕底部创建一个自定义选项卡。好吧,我已经设法做了一个 FragmentTabHost 但我仍然无法配置 tabstrip 部分,因为我真的需要改变它的颜色。

这是到目前为止的代码:

XML 底部标签

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:id="@+id/realtabcontent"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        />

    <android.support.v4.app.FragmentTabHost
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0"/>
    </android.support.v4.app.FragmentTabHost>

</LinearLayout>

以及用于设置选项卡的 fragemtActivity 代码:

setContentView(R.layout.bottom_tabs);

mTabHost = (FragmentTabHost) findViewById(android.R.id.tabhost);
        mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);

        Bundle b = new Bundle();

        b.putString("0", "Me");
mTabHost.addTab(mTabHost.newTabSpec("me").setIndicator(null,getResources().getDrawable(R.drawable.selector_me)),
                FragmentMe.class, b);

        b = new Bundle();
        b.putString("1", "Social");
        mTabHost.addTab(mTabHost.newTabSpec("social").setIndicator(null, getResources().getDrawable(R.drawable.selector_social)),
                FragmentSocial.class, b);

在这一部分,我不知道为什么我不能为 tab stip 配置该部分,而我可以通过在代码后添加以下行来配置分隔线外观:

mTabHost.getTabWidget().setShowDividers(LinearLayout.SHOW_DIVIDER_NONE);

好吧,我只是认为这部分可能会有所帮助,但我现在真正需要做的只是更改 TabStrip 颜色。谢谢!

这是到目前为止的样子:

显然它使用的是android默认tabstrip,这是我需要从蓝色变为与图标相同的十六进制的绿色。

在此处输入图像描述

4

1 回答 1

0

1.> 为您的选项卡指示器创建一个 xml 布局文件

2.> 膨胀视图

3.> 在 setIndicator 方法中设置视图

我在 TabHost 中使用过这种方式,它可以工作

例如带有文本作为选项卡指示符的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_weight="1"
android:background="@drawable/tab_selector"
>

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Whatever You Want" 
    android:textColor="@drawable/tab_text_selector"
    />

</LinearLayout>

例如以图像为指示符的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
android:layout_weight="1"
>

<ImageView
    android:id="@+id/img"
    android:layout_width="60dp"
    android:layout_height="60dp"
    android:src="@drawable/tab_indicator_world_selctor"
    android:adjustViewBounds="true"/>

</LinearLayout>
于 2013-11-06T06:31:12.093 回答