pda/zhuike/.svn/pristine/61/61c11a30c8da45806cb5a96b90c...

23 lines
861 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:color="@color/grey"
tools:targetApi="lollipop">
<item>
<shape android:shape="rectangle">
<!-- solid android:color="@color/colorAccent" /-->
<solid android:color="@color/colorPrimaryDark" />
<corners android:radius="3dp" />
</shape>
</item>
</ripple>
<!--
<item
android:id="@android:id/mask"
android:drawable="@color/colorAccent" />
以此作为 backGround时控件初始时使用 item 作为bg ; 按压时会有一个色值渐变效果,按住不松时会显示 ripple 和 item 中颜色的混合值;
松手的瞬间会显示 ripple 中色值然后再渐变为item中的色值-->