Android 圆角View设置 圆角边框


圆角的Veiw   XML

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/gray_white" />   背景颜色
    <corners android:radius="5dp" />              圆角大小
</shape>

随意定义某个角是圆角加边框

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/white" />    
    <stroke
        android:width="1dp"
        android:color="@color/pinkishGrey"></stroke>   边框
    <corners android:bottomLeftRadius="15dp"       左下圆角
        android:topLeftRadius="15dp"/>                   左上圆角
</shape>

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM