美文网首页
Android ProgressBar 颜色设置

Android ProgressBar 颜色设置

作者: 懵懵懂懂_YOYO | 来源:发表于2022-08-10 10:23 被阅读0次

ProgressBar的颜色和设置的默认主题相关联,在styles.xml中。

<resources xmlns:tools="http://schemas.android.com/tools">
    <!-- Base application theme. -->
    <style name="BaseNoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar" >
        <item name="android:windowBackground">@mipmap/bg_ar</item>
        <item name="colorAccent">@color/black</item>
    </style>
</resources>

相关文章

网友评论

      本文标题:Android ProgressBar 颜色设置

      本文链接:https://www.haomeiwen.com/subject/ysbzwrtx.html