23 lines
		
	
	
		
			767 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			767 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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 android:shape="rectangle">
 | |
|             <corners android:radius="20dp"/>
 | |
|             <gradient
 | |
|                 android:startColor="#4f5e74"
 | |
|                 android:endColor="#4f5e74"/>
 | |
|         </shape>
 | |
|     </item>
 | |
|     <item android:id="@android:id/progress">
 | |
|         <clip>
 | |
|             <shape android:shape="rectangle">
 | |
|                 <corners android:radius="20dp"/>
 | |
|                 <gradient
 | |
|                     android:startColor="#4ce6c8"
 | |
|                     android:endColor="#2880ef"
 | |
|                     android:angle="45"/>
 | |
|             </shape>
 | |
|         </clip>
 | |
|     </item>
 | |
| </layer-list>
 |