美文网首页安卓开发
如何在Android中制作胶囊形状按钮

如何在Android中制作胶囊形状按钮

作者: 蓝不蓝编程 | 来源:发表于2021-10-08 14:08 被阅读0次

制作胶囊状按钮

核心是采用shape来进行绘制。
可以作为View、TextView、各种Layout的背景(background)属性,但是不能作为Button的背景。
样例:



代码:shape_capsule_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <corners
        android:bottomLeftRadius="30dp"
        android:bottomRightRadius="30dp"
        android:topLeftRadius="30dp"
        android:topRightRadius="30dp" />

    <solid android:color="#cdcdcd" />
</shape>

使用:

<TextView
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@drawable/shape_capsule_bg"
    android:gravity="center"
    android:text="获取验证码"
    android:textColor="#ffffff"
    android:textSize="16sp" />

半个胶囊效果及实现方式

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <corners
        android:bottomLeftRadius="30dp"
        android:bottomRightRadius="0dp"
        android:topLeftRadius="30dp"
        android:topRightRadius="0dp" />

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

</shape>

参考资料:
https://www.it1352.com/1910431.html

相关文章

网友评论

    本文标题:如何在Android中制作胶囊形状按钮

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