gpt4 book ai didi

android - ContentLoadingProgressBar 中的默认颜色更改

转载 作者:行者123 更新时间:2023-12-05 00:12:34 29 4
gpt4 key购买 nike

我在我的项目中使用 androidx 并且我在某处使用 ContentLoadingProgressBar 但我无法更改默认颜色。

我已尝试使用 android:indeterminateTint 但无济于事。

如果有人对此有任何想法请建议

<androidx.core.widget.ContentLoadingProgressBar
android:id="@+id/progress"
android:layout_width="@dimen/_30sdp"
android:layout_height="@dimen/_30sdp"
android:indeterminateTint="@android:color/white"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />

最佳答案

扩展默认主题并覆盖 colorAccent

<style name="AppTheme.WhiteAccent">
<item name="colorAccent">@color/white</item> <!-- Whatever color you want-->
</style>

添加ContentLoadingProgressBar android:theme 属性:

android:theme="@style/AppTheme.WhiteAccent"

关于android - ContentLoadingProgressBar 中的默认颜色更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55706108/

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