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