二级进度不可见

Secondary progress not visible

SeekBar 中的二级进度不可见。

如果我不在 drawable 中提供进度,它会覆盖辅助 作为主要进度的进度

seekbar_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/secondaryProgress">
        <clip>
                <shape android:shape="line">
                    <stroke
                        android:width="3dp"
                        android:color="@color/color_status_bar" />
                </shape>
        </clip>
    </item>
</layer-list> 

自定义 SeekBar 显示进度但不显示次要进度。 删除时

<item android:id="@android:id/progress">
    <clip>
        <shape android:shape="line">
            <stroke
                android:width="3dp"
                android:color="@color/color_status_bar" />
        </shape>
    </clip>
</item>

从XML开始是以次级进步为主的进步

在 xml 中使用 Secondary Progress 属性,这对我有用。

<SeekBar
     android:id="@+id/seekbar_voice"
     android:layout_width="0dp"
     android:layout_height="wrap_content"
     android:layout_gravity="center"
     android:layout_weight="1"
     android:progressDrawable="@drawable/seekbar_progress"
     android:secondaryProgress="100"
     android:splitTrack="false"
     android:thumb="@drawable/custom_thumb" />