gpt4 book ai didi

android - FragmentTabHost TabWidget tabStrip 不能自定义

转载 作者:搜寻专家 更新时间:2023-11-01 08:54:01 25 4
gpt4 key购买 nike

这让我很困惑,因为每当我设置 FragmentTabHost 的 StripEnabled 时,它都不会按照我想要的方式运行。

从这里开始是 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);

它成功地隐藏了选项卡上的所有分隔线,但是当我使用这行代码禁用选项卡时:

mTabHost.getTabWidget().setStripEnabled(false);

tabStrip 仍然在那里,但是当我将它设置为 true 时,未选中项目的 strip 变成灰色,我真的说不出为什么。

好吧,我的主要目标是更改该 tabStrip 的颜色或以其他方式将其完全删除,但由于这个问题,我无法确定我应该如何做。我尝试使用膨胀 View ,但选择器不再工作,所以我无法判断选项卡是否被选中。希望有人可以帮助我解决这个问题,我该如何改变它。但我真的希望有人能帮助我改变 strip 颜色,因为这真的很烦人。

最佳答案

我已经通过使用选择器更改背景资源来更改它。我使用了 9 补丁图像来确保一切都合适。这是添加所有选项卡后的代码:

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

仅适用于所有 child 并且有效。虽然它解决了我的问题,但不是最佳解决方案。 :)

关于android - FragmentTabHost TabWidget tabStrip 不能自定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20538607/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com