是否可以使用我们自己的主图和副图制作自定义进度条?

is it possible to make custom progress bar with our own primary and secondary images?

我想用我自己的图片制作自定义进度条。我不知道如何制作这样的进度条。

有知道自定义进度条的吗?

自定义进度条是指自定义主次进度条。

请帮帮我。

是的,这是可能的,您可以像这样创建 progress.xml 可绘制对象

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+android:id/background"
android:drawable="@drawable/circular_background" />
    <item android:id="@+android:id/secondaryProgress"
android:drawable="@drawable/circular_background" />
    <item android:id="@+android:id/progress"
android:drawable="@drawable/circular_progress" />
</layer-list>

并使用以下属性将此 progress.xml 设置为 Progressbar

 android:progressDrawable="@drawable/progress" 

并根据您的要求创建 circular_background 和 circular_progress