2

我正在使用 FragmentTabHost 来获取我的选项卡,但是每个选项卡按钮周围都有一个灰色边框。请指导我摆脱这个灰色边框。见下面的附件: 在此处输入图像描述

我希望它看起来像: 在此处输入图像描述

我的布局是:

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

<RelativeLayout 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="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/tabhost" />

    <android.support.v4.app.FragmentTabHost
        android:id="@+id/tabhost"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
         android:layout_alignParentBottom="true"
         >

        <FrameLayout
            android:id="@+id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
             />
    </android.support.v4.app.FragmentTabHost>

</RelativeLayout>

我的Android代码是:

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

        mTabHost.setBackgroundColor(Color.BLACK);


        mTabHost.addTab(mTabHost.newTabSpec(HOMETAB_TAG).setIndicator("" , getResources().getDrawable(R.drawable.home_selector)), HomeContainerFragment.class, null);
        mTabHost.addTab(mTabHost.newTabSpec(QRTAB_TAG).setIndicator("", getResources().getDrawable(R.drawable.qr_selector)), QrContainerFragment.class, null);
        mTabHost.addTab(mTabHost.newTabSpec(AROUNDTAB_TAG).setIndicator("", getResources().getDrawable(R.drawable.around_selector)), AroundContainerFragment.class, null);
        mTabHost.addTab(mTabHost.newTabSpec(SHARETAB_TAG).setIndicator("", getResources().getDrawable(R.drawable.share_selector)), ShareContainerFragment.class, null);
        mTabHost.addTab(mTabHost.newTabSpec(MORETAB_TAG).setIndicator("", getResources().getDrawable(R.drawable.more_selector)), MoreContainerFragment.class, null);

提前致谢。

4

1 回答 1

5

得到了我自己的工作,它按要求工作。谢谢。

刚刚使用下面的代码:

    mTabHost.addTab(mTabHost.newTabSpec(HOMETAB_TAG).setIndicator(""), HomeContainerFragment.class, null);
    mTabHost.addTab(mTabHost.newTabSpec(QRTAB_TAG).setIndicator(""), QrContainerFragment.class, null);
    mTabHost.addTab(mTabHost.newTabSpec(AROUNDTAB_TAG).setIndicator(""), AroundContainerFragment.class, null);
    mTabHost.addTab(mTabHost.newTabSpec(SHARETAB_TAG).setIndicator(""), ShareContainerFragment.class, null);
    mTabHost.addTab(mTabHost.newTabSpec(MORETAB_TAG).setIndicator(""), MoreContainerFragment.class, null);

    mTabHost.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.home_selector);
    mTabHost.getTabWidget().getChildAt(1).setBackgroundResource(R.drawable.qr_selector);
    mTabHost.getTabWidget().getChildAt(2).setBackgroundResource(R.drawable.around_selector);
    mTabHost.getTabWidget().getChildAt(3).setBackgroundResource(R.drawable.share_selector);
    mTabHost.getTabWidget().getChildAt(4).setBackgroundResource(R.drawable.more_selector);

    mTabHost.getTabWidget().setStripEnabled(false);
    mTabHost.getTabWidget().setDividerDrawable(null);
于 2013-08-07T06:14:49.760 回答