Skip to content

Instantly share code, notes, and snippets.

@KwabenBerko
Created April 16, 2020 10:33
Show Gist options
  • Save KwabenBerko/3bb91c493fe24f072dac256dcb727715 to your computer and use it in GitHub Desktop.
Save KwabenBerko/3bb91c493fe24f072dac256dcb727715 to your computer and use it in GitHub Desktop.
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="8dp"/>
<solid android:color="@color/gray"/>
</shape>
</item>
<item android:id="@android:id/progress"
android:top="1dp"
android:bottom="1dp"
android:left="1dp"
android:right="1dp">
<scale android:scaleWidth="100%">
<shape>
<corners android:radius="8dp"/>
<solid android:color="@color/colorPrimaryDark"/>
</shape>
</scale>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment