Android 圆角矩形

效果:

Android 圆角矩形


corner.xml

[html] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>  

  2. <shape xmlns:android="http://schemas.android.com/apk/res/android" >  

  3.   

  4.     <solid android:color="#ffffff" />  

  5.   

  6.     <corners  

  7.         android:bottomLeftRadius="20dp"  

  8.         android:bottomRightRadius="20dp"  

  9.         android:topLeftRadius="20dp"  

  10.         android:topRightRadius="20dp" />  

  11.   

  12. </shape>  


android:background="@drawable/corner" 


转载于:https://my.oschina.net/bv10000/blog/187579