如何设置圆形不确定进度条的厚度android?

时间:2018-02-02 11:34:09

标签: java android android-layout android-xml android-progressbar

我有两个嵌套的圆形不确定进度条,但我无法将它们的厚度设置为相同的大小。我试图使用形状自定义它。但是,这会删除循环不确定进度的默认行为。 我这样定制,它使厚度相等,但没有得到默认行为。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/progress">
        <rotate android:toDegrees="360">
            <shape
                android:shape="ring"
                android:thickness="4dp">
                <solid android:color="@color/white" />
            </shape>
        </rotate>
    </item>
</layer-list>

<ProgressBar
      android:id="@+id/download_progress4"
      android:layout_width="85dp"
      android:layout_height="85dp"
      android:layout_gravity="center"
      android:indeterminate="true"
      android:indeterminateDrawable="@style/ProgressThem" />

我想要这样的循环不确定进度条的默认行为

but i want like this with default behaviour of circular indeterminate progress bar

3 个答案:

答案 0 :(得分:6)

试试这个

使用

android:innerRadiusRatio="3"
android:thicknessRatio="20.0

示例代码

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/progress">
        <rotate android:toDegrees="360">
            <shape
                android:shape="ring"
                android:thickness="4dp"
                android:innerRadiusRatio="3"
                android:thicknessRatio="20.0">
                <solid android:color="@color/white" />
            </shape>
        </rotate>
    </item>
</layer-list>

答案 1 :(得分:3)

如果您想要的不仅仅是现代动画,还可以将https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/drawable/progress_indeterminate_anim_medium_material.xml用作indeterminateDrawable进行复制和更改。

<ProgressBar
    android:indeterminateDrawable="@drawable/new_progress_indeterminate_anim_medium_material"

例如,要更改vector_drawable_progress_bar_medium.xml android:strokeWidth="1"中的宽度。

这样做很麻烦,因为您还需要将动画,内插器和动画器xml文件复制到项目中,因为它们在Android SDK中是私有的。

答案 2 :(得分:3)

实际上有一种更简单的方法可以使用材料组件来做到这一点:

<com.google.android.material.progressindicator.CircularProgressIndicator
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:indeterminate="true"
        app:trackThickness="3dp" />

材料文档中的更多详细信息 -> https://material.io/components/progress-indicators/android#circular-progress-indicators