<?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属性即可。
网友评论