アクション バーの行に合わせて、ListPreference のタイトルと行の色を青からピンクに変更したいと思います。
何か案は?前もって感謝します!
私はAndroidthemes.xml
をstyles.xml
調べて、のようなものを見てきdialogPreferenceStyle
ましたが、まだ理解していません.
アクション バーの行に合わせて、ListPreference のタイトルと行の色を青からピンクに変更したいと思います。
何か案は?前もって感謝します!
私はAndroidthemes.xml
をstyles.xml
調べて、のようなものを見てきdialogPreferenceStyle
ましたが、まだ理解していません.
今日も同じ問題がありました。古いスレッドですが、これを見つけました:そしてそれは完全に機能します。
styles.xml を変更するだけです
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<!-- Add this -->
<item name="android:dialogTheme">@style/DialogStyle</item>
<item name="android:alertDialogTheme">@style/DialogStyle</item>
</style>
<!-- Customize your color here -->
<style name="DialogStyle" parent="android:Theme.Material.Dialog">
<item name="android:colorAccent">@color/colorAccent</item>
</style>