I want to create a custom progress bar :
And i use a custom drawable :
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@android:id/background">
<shape>
<corners android:radius="10dip" />
<gradient
android:endColor="#3d3d3d"
android:startColor="#3d3d3d" />
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="10dip" />
<gradient
android:angle="0"
android:endColor="#33bc90"
android:startColor="#4686ef" />
</shape>
</clip>
</item>
</layer-list>
Now i getting next result :
And i see a most important problems :
- in center my progress is not edged
- i will can see
end_color
only in caseprogress = 100
How i can fix this in accordance to my requirenments?
After such of investigation i make a decision to write my own implementation.
50% :
75% :
And don't forget to add
into your layout.xml file.