gpt4 book ai didi

android:如何更改 ListPreference 标题颜色?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:06:53 25 4
gpt4 key购买 nike

我想将我的 ListPreference 的标题和线条颜色从蓝色更改为粉红色,以匹配我的操作栏的线条。

ListPreference

有什么想法吗?提前致谢!

我一直在查看 Android 的 themes.xmlstyles.xml 寻找诸如 dialogPreferenceStyle 之类的东西,但还没有想通还没出来。

最佳答案

今天遇到了同样的问题。旧线程,但我发现 this:而且效果很好。

只需修改你的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>

关于android:如何更改 ListPreference 标题颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19531707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com