Android ProgressBar 颜色设置
2022-08-10 本文已影响0人
懵懵懂懂_YOYO
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>