25 lines
		
	
	
		
			649 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			649 B
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <shape xmlns:android="http://schemas.android.com/apk/res/android">
 | |
|     <!-- 实心 -->
 | |
|     <solid android:color="@color/colorPrimary"/>
 | |
|     <!-- 渐变 -->
 | |
|     <!--<gradient-->
 | |
|         <!--android:startColor="#ff8c00"-->
 | |
|         <!--android:endColor="#FFFFFF"-->
 | |
|         <!--android:angle="270" />-->
 | |
| 
 | |
|     <!-- 描边 -->
 | |
|     <stroke
 | |
|         android:width="1dp"
 | |
|         android:color="@color/colorPrimary" />
 | |
|     <!-- 圆角 -->
 | |
|     <corners
 | |
|         android:radius="6dp" />
 | |
|     <padding
 | |
|         android:left="5dp"
 | |
|         android:top="5dp"
 | |
|         android:right="5dp"
 | |
|         android:bottom="5dp" />
 | |
| 
 | |
| 
 | |
| </shape> |