Можно ли поменять оранжевый цвет на выбранной вкладке на другой

У меня есть вкладка в моем проекте, и мне просто интересно, если вы можете изменить оранжевый цвет, когда вы щелкаете вкладку на другой цвет, который вы хотите. Я хочу изменить его на другой цвет, вы можете изменить его только через XML или программно?

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"/>
    </LinearLayout>
</TabHost>

селектор:

<!--  Active tab -->
<item android:state_selected="true" android:state_focused="false"
    android:state_pressed="false" android:drawable="@drawable/tab_bg_selected" />
<!--  Inactive tab -->
<item android:state_selected="false" android:state_focused="false"
    android:state_pressed="false" android:drawable="@drawable/tab_bg_unselected" />

1 ответ

Вот код, взятый из другого ответа, который должен работать:

View mIndicator = inflater.inflate(R.layout.tab_indicator_holo, 
                            mTabHost.getTabWidget(), false); // this will inflate a layout, you can use whatever layout you want
TextView title1 = (TextView) mIndicator.findViewById(android.R.id.title); //so we add a title 

title1.setText("TAB1"); // we bind the title

mTabsAdapter.addTab(mTabHost.newTabSpec("TAB1").setIndicator( mIndicator), F_GetGames.class, null); // we bind the inflated layout

Источник

Другие вопросы по тегам