美文网首页
android 圆角View

android 圆角View

作者: 风寒夜末 | 来源:发表于2020-09-18 23:31 被阅读0次

    在drawable文件下 创建一个布局文件corners_bg.xml

    //圆角View的背景颜色

    <?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"><solid android:color="#000000" /> //圆角View的背景颜色

    <corners android:topLeftRadius="10dp" 

     android:topRightRadius="10dp"   

    android:bottomRightRadius="10dp"

    android:bottomLeftRadius="10dp"/>   

     </shape> 

     一般。四个圆角都是一样的,能够简单的写为:

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

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

     <solid android:color="#000000" />       

     <corners android:radius="5dp"/>

     </shape> 

    调用非常easy,仅仅须要在用圆角的View中:

    android:background="@drawable/corners_bg"

    相关文章

      网友评论

          本文标题:android 圆角View

          本文链接:https://www.haomeiwen.com/subject/dsbsyktx.html