gpt4 book ai didi

java - 如何设置背景颜色 TabHost

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:38:12 26 4
gpt4 key购买 nike

我需要帮助,我发现很难在 TabHost 中更改背景颜色。

原始图片:

image1

我需要修改背景颜色,如下图所示。

image2

我也在我的代码和 XML 中尝试了很多东西,但都失败了。

我的代码如下:

 TabHost tabHost = getTabHost();

// Tab 1
TabSpec aba1spec = tabHost.newTabSpec("Tab 1");
// setting Title and Icon for the Tab
tabHost.getTabWidget().setStripEnabled(false);
aba1spec.setIndicator("",getResources().getDrawable(R.drawable.tabenviaarq));
Intent photosIntent = new Intent(this, MainActivity.class);
aba1spec.setContent(photosIntent);

// Adding all TabSpec to TabHost
tabHost.addTab(aba1spec); // Adding tab1

在 XML 中我有这个:

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@android:id/tabs"
android:layout_alignParentTop="true"/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="65dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="-5dp"
android:background="#000000"/>
</RelativeLayout>
</TabHost>

有人知道我非常感谢。

最佳答案

tabHost.setOnTabChangedListener(new OnTabChangeListener() {

public void onTabChanged(String arg0) {
for (int i = 0; i < tab.getTabWidget().getChildCount(); i++) {
tab.getTabWidget().getChildAt(i)
.setBackgroundResource(R.drawable.tab_selected); // unselected
}
tab.getTabWidget().getChildAt(tab.getCurrentTab())
.setBackgroundResource(R.drawable.tab_unselected); // selected

}
});

试试这个方法,希望对你有帮助。

关于java - 如何设置背景颜色 TabHost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20404907/

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