[Solved] RecyclerView With Multiple Seekbars


Please check the following xml for the background of each seekbar:-

<?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/round_bg_progress">
    <!-- or 1dp -->

</item>
<item android:id="@android:id/progress">
    <clip android:drawable="@drawable/seek1_bg" />
</item>
</layer-list>

1

solved RecyclerView With Multiple Seekbars