美文网首页
Shape为View定制下划线

Shape为View定制下划线

作者: 榕城歌者 | 来源:发表于2019-03-28 11:08 被阅读0次
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:right="0dp">
        <shape android:shape="rectangle">
            <solid android:color="@color/ma_blue" />
        </shape>
    </item>
    <item android:bottom="2.5dp">
        <shape android:shape="rectangle">
            <solid android:color="?attr/colorPrimary" />
        </shape>
    </item>
</layer-list>

可以用在普通的View上,也可以增加Selector来做一下选中效果,直接设置到View的background属性即可。

相关文章

网友评论

      本文标题:Shape为View定制下划线

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