这让我很困惑,因为每当我设置fragmenttabhost的stripeenabled时,它并没有按照我想要的方式运行。
首先是fragmenttabhost的代码:

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

        Bundle b = new Bundle();

        b.putString("0", "tab1");
        mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator(null,getResources().getDrawable(R.drawable.selector_tab1)),
                Fragment1.class, b);

        b = new Bundle();
        b.putString("1", "tab2");
        mTabHost.addTab(mTabHost.newTabSpec("tab2").setIndicator(null, getResources().getDrawable(R.drawable.selector_tab2)),
                Fragment2.class, b);

以及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>

现在,当我添加这些代码行时,它工作得很好:
mTabHost.getTabWidget().setShowDividers(LinearLayout.SHOW_DIVIDER_NONE);

它成功地隐藏了选项卡上的所有分隔符,但是当我使用这行代码禁用tabstrip时:
mTabHost.getTabWidget().setStripEnabled(false);

tabstrip仍然存在,但是当我将其设置为true时,未选中项的strip将变为灰色,我真的不知道原因。
好吧,我的主要目的是改变标签条的颜色,或者完全去掉它,但有了这个问题,我真的不知道该怎么做。我尝试使用一个膨胀视图,但是选择器不再工作,所以我无法再判断是否选择了选项卡。希望有人能帮助我如何改变它。但我真的希望有人能帮助我如何改变条纹颜色,因为这变得非常烦人。

最佳答案

我已经用选择器更改了背景资源。我用了一张9片的图片来确保所有的东西都能装进去。下面是添加所有选项卡后的代码:

tabHost.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.tab_selector);

对所有的孩子都是这样,而且很管用。虽然它解决了我的问题,但不是最好的解决办法。:)

09-18 07:43