23 lines
		
	
	
		
			647 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			647 B
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <shape xmlns:android="http://schemas.android.com/apk/res/android">
 | |
|     <!-- 实心 -->
 | |
|     <solid android:color="@color/colorPrimaryDark"/>
 | |
|     <!-- 渐变 -->
 | |
|      <gradient
 | |
|         android:startColor="@color/colorPrimary"
 | |
|         android:endColor="@color/colorPrimaryDark"
 | |
|         android:angle="270" />
 | |
| 
 | |
|     <!-- 描边 -->
 | |
|     <stroke
 | |
|         android:width="2dp"
 | |
|         android:color="@color/white" />
 | |
|     <!-- 圆角 -->
 | |
|     <corners
 | |
|         android:radius="8dp" />
 | |
|     <padding
 | |
|         android:left="11dp"
 | |
|         android:top="2dp"
 | |
|         android:right="11dp"
 | |
|         android:bottom="3dp" />
 | |
| </shape> |