How can I add rounded corners to progress state of SeekBar which contains bitmap?
This progress bitmap is a PNG file that contains a pattern to be repeated, that's why I can't use nine patch for this state.
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<nine-patch android:src="@drawable/background"/>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<nine-patch android:src="@drawable/secondary_progress"/>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<bitmap android:src="@drawable/progress" android:tileMode="repeat"/>
</clip>
</item>
</layer-list>
Desired look: