0

アクションバーにカスタム背景色を追加したいアプリを簡単にカスタマイズしています。styles-v14これがフォルダ内の私のstyles.xmlです。(私のアプリは SDK 14 以降のみを対象としています)。

この行のコメントを外して app を実行すると、ステータス バーを除く画面全体が白くなりますが、アクション バーの背景色は別の色になるはずです。

 <!--     <item name="android:actionBarStyle">@style/WindowTitleBackground</item>   -->

何がうまくいかないのか考えてみてください。ここに私のアプリマニフェストがあります:

 <application
        android:name=".App"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

スタイル.xml

<resources>

    <!--
        Base application theme for API 14+. This theme completely replaces
        AppBaseTheme from BOTH res/values/styles.xml and
        res/values-v11/styles.xml on API 14+ devices.
    -->
   <style name="AppTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">

    <item name="android:listChoiceIndicatorSingle">@drawable/btn_radio_holo_light</item>
<!--     <item name="android:actionBarStyle">@style/WindowTitleBackground</item>   -->

  </style>


  <style name="RadioButtonAppTheme" parent="android:Widget.CompoundButton.RadioButton">
      <item name="android:button">@drawable/btn_radio_holo_light</item>
  </style>

  <style name="WindowTitleBackground">     
        <item name="android:background">@color/titlebackgroundcolor</item>                   
    </style>

</resources>
4

1 に答える 1