弧形进度条,内部有恒定图像

时间:2017-08-04 02:41:23

标签: android android-animation android-progressbar

如何创建一个Arc Progress bar动画,其中包含常量图像,如Image

2 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item android:id="@android:id/background">

    <shape
        android:innerRadiusRatio="3"
        android:shape="ring"
        android:thicknessRatio="12.0"
        android:useLevel="false">
        <bitmap android:src="@drawable/bg" />
    </shape>

</item>

<item android:id="@android:id/progress">

    <shape
        android:innerRadiusRatio="3"
        android:shape="ring"
        android:thicknessRatio="12.0">
        <gradient
            android:endColor="#cc44b9ff"
            android:startColor="#cc9730ff"
            android:type="linear" />

    </shape>

</item>

图层列表是一种可绘制的第一项表示背景,第二项表示进度条应该如何。

注意:第二项的ID应为android:id="@android:id/progress",如果您想要纯色,可以删除渐变。

答案 1 :(得分:0)

如果您使用的是该库,请使用

 <com.github.lzyzsd.circleprogress.ArcProgress
    android:id="@+id/arc_progress"
    android:background="#214193"
    android:layout_marginLeft="50dp"
    android:layout_width="100dp"
    android:layout_height="100dp"
    custom:arc_progress="55"
    custom:arc_bottom_text="Required Text"/>