<?xml version="1.0" encoding="utf-8"?>
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
android:color="@color/color_gray">
|
<item>
|
<selector>
|
<item android:state_pressed="true">
|
<shape android:shape="rectangle">
|
<solid android:color="@color/gray_pressed" />
|
</shape>
|
</item>
|
|
<item android:state_enabled="false">
|
<shape android:shape="rectangle">
|
<solid android:color="@color/cut_off_line" />
|
</shape>
|
</item>
|
|
<item>
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<!-- 主体背景颜色值 -->
|
<item >
|
<shape>
|
<solid android:color="@color/white"/>
|
</shape>
|
</item>
|
<!-- 连框颜色值 -->
|
<item android:height="1dp" android:gravity="bottom">
|
<shape>
|
<solid android:color="@color/black"/>
|
</shape>
|
</item>
|
</layer-list>
|
</item>
|
|
</selector>
|
</item>
|
|
</ripple>
|