Skip to content

Commit

Permalink
Merge pull request #162 from yoh-there/master
Browse files Browse the repository at this point in the history
Added green bar to
  • Loading branch information
yoh-there committed Nov 1, 2015
2 parents c22d64d + c40e859 commit 1f3c581
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/src/main/res/drawable/progressbar_canze_green.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?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="5dip" />
<gradient
android:angle="270"
android:centerColor="#ffaaadaa"
android:centerY="0.5"
android:endColor="#ffc4c6c4"
android:startColor="#ffededed"
/>
</shape>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:angle="0"
android:endColor="#ff00ff00"
android:startColor="#ff009900"
/>
</shape>
</clip>
</item>
</layer-list>

0 comments on commit 1f3c581

Please sign in to comment.