Skip to content

Instantly share code, notes, and snippets.

@kheldiente
Created May 28, 2018 09:53
Show Gist options
  • Save kheldiente/83c95bdd79d6a5b373d3646e159c2823 to your computer and use it in GitHub Desktop.
Save kheldiente/83c95bdd79d6a5b373d3646e159c2823 to your computer and use it in GitHub Desktop.
Progress style on seekbar
<?xml version="1.0" encoding="utf-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/progressshape" >
<clip>
<shape
android:shape="rectangle" >
<size android:height="5dp"/>
<corners
android:radius="5dp" />
<solid android:color="@android:color/transparent"/>
</shape>
</clip>
</item>
</layer-list>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment