Removed unnecessary complexity from drawable

This commit is contained in:
GaidamakUA 2016-01-21 18:32:41 +02:00
parent ffd8980bdb
commit 7d1060c926

View file

@ -3,13 +3,7 @@
<!-- Define the background properties like color etc --> <!-- Define the background properties like color etc -->
<item android:id="@android:id/background"> <item android:id="@android:id/background">
<shape> <shape>
<gradient <solid android:color="#475259"/>
android:startColor="#475259"
android:centerColor="#475259"
android:centerY="1.0"
android:endColor="#475259"
android:angle="270"
/>
</shape> </shape>
</item> </item>
@ -17,13 +11,7 @@
<item android:id="@android:id/progress"> <item android:id="@android:id/progress">
<clip> <clip>
<shape> <shape>
<gradient <solid android:color="@color/color_distance"/>
android:startColor="@color/color_distance"
android:centerColor="@color/color_distance"
android:centerY="1.0"
android:endColor="@color/color_distance"
android:angle="270"
/>
</shape> </shape>
</clip> </clip>
</item> </item>