android shape xml标签useLevel属性的用途是什么?这是关于层列表的,但不重要。
docs中,我找到了useLevel标签的含义:



因此,如果我有以下xml片段:

    <?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="ring"
    android:innerRadius="15dp"
    android:thickness="10dp"
    android:useLevel="false">

    <solid android:color="#ababf2" />

    <size
        android:height="50dp"
        android:width="50dp" />
</shape>

然后在useLevel = true的情况下禁用该环。环出现必须为假。但是此属性的目的是什么?该文档尚不清楚。

最佳答案

它用于ProgressBars。例如,this gist使用环形作为可绘制进度。

res/drawable/github_232_circular.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:innerRadiusRatio="2.3"
       android:shape="ring"
       android:thickness="3.8sp"
       android:useLevel="true">
    <solid android:color="#ff0000" />
</shape>

在您的布局中:
<ProgressBar
    android:id="@+id/progress"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="64dp"
    android:layout_height="64dp"
    android:layout_gravity="top|end"
    android:max="100"
    android:progress="0"
    android:progressDrawable="@drawable/github_232_circular"
/>

基本上,useLevel使它成为可绘制对象的一部分。例如,有一种方法ImageView.setImageLevel()可让您设置“级别”,例如25%的进度,因此可绘制的圆环将绘制为四分之一圆。 ProgressBar.setProgress()做同样的事情,更新您在ProgressBar上设置的可绘制对象的“级别”。

09-30 23:02