Android更改tabview的文本颜色而不是背景颜色

发布于 2024-10-06 09:59:29 字数 109 浏览 5 评论 0原文

我怎样才能做到这一点?是否可以?

tabhost.getTabWidget().getChildAt(i) 。 setTextColor 还是其他什么......?

How i can do that? is it possible?

:

tabhost.getTabWidget().getChildAt(i) . setTextColor or something else..?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

脱离于你 2024-10-13 09:59:29

我想你可以使用 TabHost.TabSpec.setIndicator(android.view.View view) 传递一个根据您的需要配置(着色)的 TextView

然而,我再次重读了您的帖子 - 可能您的意思是如何更改选项卡内容的颜色,而我正在谈论选项卡标签...如果是这种情况,我很抱歉,请忽略这个答案。

更新

在布局 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">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            <TextView 
                android:id="@+id/textview1"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:text="this is a tab - RED"
                android:textColor="#FF0000" />
            <TextView 
                android:id="@+id/textview2"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:text="this is another tab - GREEN"
                android:textColor="#00FF00" />
            <TextView 
                android:id="@+id/textview3"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:text="this is a third tab - BLUE"
                android:textColor="#0000FF" />
        </FrameLayout>
    </LinearLayout>
</TabHost>

I guess you could use TabHost.TabSpec.setIndicator(android.view.View view) passing a TextView configured (colorized) according to your needs.

However I reread your post once again - probably you mean how to change the color of tab content, while I'm talking about tab label... If this is the case, I am sorry, please ignore this answer.

UPDATE:

It is most comfortable to do in your layout 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">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            <TextView 
                android:id="@+id/textview1"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:text="this is a tab - RED"
                android:textColor="#FF0000" />
            <TextView 
                android:id="@+id/textview2"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:text="this is another tab - GREEN"
                android:textColor="#00FF00" />
            <TextView 
                android:id="@+id/textview3"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" 
                android:text="this is a third tab - BLUE"
                android:textColor="#0000FF" />
        </FrameLayout>
    </LinearLayout>
</TabHost>
如痴如狂 2024-10-13 09:59:29

尝试 ColorStateLists。祝你好运。

Try ColorStateLists. Good Luck.

毁我热情 2024-10-13 09:59:29

要更改选项卡的文本颜色,您需要获取视图,即设置为选项卡标题的 TextView,您可以像这样更改它:

TabHost tabhost = getTabHost();
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++) 
{
    TextView tv = (TextView) tabhost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
    tv.setTextColor(.....);
} 

希望这会有所帮助......

To change the text color of tabs, you need to get the view i.e TextView which is set as title of tabs and you can change it like this:

TabHost tabhost = getTabHost();
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++) 
{
    TextView tv = (TextView) tabhost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
    tv.setTextColor(.....);
} 

hope this helps....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文