Made progress bars wider so they are easier to see.
This commit is contained in:
30
app/src/main/res/drawable/progress_bar_red.xml
Normal file
30
app/src/main/res/drawable/progress_bar_red.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- Define the background properties like color etc -->
|
||||
<item android:id="@android:id/background">
|
||||
<shape>
|
||||
<gradient
|
||||
android:startColor="#000000"
|
||||
android:centerColor="#000000"
|
||||
android:centerY="1.0"
|
||||
android:endColor="#000000"
|
||||
android:angle="270"
|
||||
/>
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<!-- Define the progress properties like start color, end color etc -->
|
||||
<item android:id="@android:id/progress">
|
||||
<clip>
|
||||
<shape>
|
||||
<gradient
|
||||
android:startColor="#ff0000"
|
||||
android:centerColor="#ffa0a0"
|
||||
android:centerY="0.5"
|
||||
android:endColor="#ff0000"
|
||||
android:angle="270"
|
||||
/>
|
||||
</shape>
|
||||
</clip>
|
||||
</item>
|
||||
</layer-list>
|
||||
Reference in New Issue
Block a user