2017-01-29 34 views
0

タブウィジェットレイアウト画面の表示色を変更するにはどうすればよいですか?現在は白です。私はそれを青に変えたい。タブウィジェットの背景色

<?xml version="1.0" encoding="utf-8"?> 
<TabHost android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent" 
    xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.com/apk/res-auto"> 
    <LinearLayout android:orientation="vertical" android:id="@id/mainLayout" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ff2356bf" > 
     <FrameLayout android:layout_width="0.0dip" android:layout_height="0.0dip" android:layout_weight="0.0" /> 
     <TabWidget android:orientation="horizontal" android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0.0" /> 
     <android.support.v4.view.ViewPager android:id="@id/pager" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_weight="1.0" /> 
     <LinearLayout android:layout_gravity="center" android:orientation="vertical" android:id="@id/BannerLayout" android:paddingBottom="2.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content"> 
      <com.google.android.gms.ads.AdView android:layout_gravity="center_horizontal" android:id="@id/adView" android:layout_width="fill_parent" android:layout_height="wrap_content" ads:adSize="BANNER" ads:adUnitId="@string/banner" /> 
     </LinearLayout> 
    </LinearLayout> 
</TabHost> 

enter image description here

+0

[Android tabhost change text color style](http://stackoverflow.com/questions/22533061/android-tabhost-change-text-color-style)の可能な複製 –

答えて

0

https://stackoverflow.com/a/38835247/4758255@will-molter答えから:

これは、実際にXMLのテーマを使用して行うことができます。 TabWidgetは、選択したタブにandroid:textColorPrimary、選択しなかったものにはandroid:textColorSecondaryを使用します。 android:themeTabWidgetに直接あってはならないことを

<TabHost 
    android:layout_height="match_parent" 
    android:layout_width="match_parent" 
    android:theme="@style/TabWidgetTheme"/> 

注:のstyles.xmlで

:あなたのレイアウトでは

<style name="TabWidgetTheme" parent="AppTheme"> 
    <item name="android:textColorPrimary">@color/your_primary_color</item> 
    <item name="android:textColorSecondary">@color/your_secondary_color</item> 
</style> 

したがって、あなたは、このようなテキストの色の変化を達成することができますそれ自体ではなく、むしろ含有するTabHostまたは類似のものである。