当前位置:操作系统 > 安卓/Android >>

Android 圆角矩形

效果:
 
 
\
 
 
 
 
corner.xml
 
 
 
[html]  
<?xml version="1.0" encoding="utf-8"?>  
<shape xmlns:android="http://schemas.android.com/apk/res/android" >  
  
    <solid android:color="#ffffff" />  
  
    <corners  
        android:bottomLeftRadius="20dp"  
        android:bottomRightRadius="20dp"  
        android:topLeftRadius="20dp"  
        android:topRightRadius="20dp" />  
  
</shape>  
 
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
 
    <solid android:color="#ffffff" />
 
    <corners
        android:bottomLeftRadius="20dp"
        android:bottomRightRadius="20dp"
        android:topLeftRadius="20dp"
        android:topRightRadius="20dp" />
 
</shape>
 
 
android:background="@drawable/corner" 
 
 
 
 
 
补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,