美文网首页
[android]圆角按钮

[android]圆角按钮

作者: 黑森林中的小木屋 | 来源:发表于2018-01-08 19:04 被阅读0次

    需要一个xml文件
    drawable文件夹中新建一个xml文件,例:ss.xml
    内容:

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
        <corners android:radius="4dip"/>
        <solid android:color="#1c8af9"/>
        <stroke
            android:width="1dp"
            android:color="#1c8af9" />
    
      
    <!-- dashWidth指的是边线的长度 dashGap 指的是每条线之间的间距 width指的是边线的宽度 -->
        <!--<stroke
            android:width="2dp"
            android:color="#00AAEE"
            android:dashGap="2dp"
            android:dashWidth="10dp" />-->
    */
    </shape>
    

    corners 圆角
    solid 填充色
    stroke 边框

    相关文章

      网友评论

          本文标题:[android]圆角按钮

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