毕设day26

记录一下:

今天导入别人的项目时运行的时候出现的错误:

Widget.Material.Light.ProgressBar.Horizontal" (10302b8) is not a Drawable (color or path)

原因在布局界面的:
android:progressDrawable="@android:style/Widget.Material.Light.ProgressBar.Horizontal"
解决问题:

原代码:

<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progressDrawable="@android:style/Widget.Material.Light.ProgressBar.Horizontal"/>
改为

<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"/>

参考网址:https://blog.csdn.net/chenhao0568/article/details/90485978
posted @ 2021-04-28 16:37  IT龚哞哞  阅读(48)  评论(0)    收藏  举报