嗨,我目前正在做一个项目,我需要在屏幕底部创建一个自定义选项卡。好吧,我已经设法做了一个 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,这是我需要从蓝色变为与图标相同的十六进制的绿色。