Android Marterial UI 之水波纹效果
2019-04-08 本文已影响12人
WangGavin
1 相关Android SDK资源
- 有边界波纹,默认资源:
"?android:attr/selectableItemBackground"
- 无边界波纹,默认资源:
"?android:attr/selectableItemBackgroundBorderless"
?android:attr/selectableItemBackground
表示引用主题中的selectableItemBackground
这个属性,而主题中selectableItemBackground
属性指向的是一个drawable资源,当然这个主题属性是兼容了Android平台的,有的属性则没有。
2 普通可点击View设置点击水波纹效果
2.1 使用默认主题的
待补充
2.2 自定义水波纹
待补充
3 CardView 设置点击水波纹效果
设置CardView的android:background
属性是不起作用的
- 可以添加
app:cardBackgroundColor
设置背景色。 - 如果需要添加水波纹效果,那么只能添加前景了,那么前景可以使用主题的,也可以使用自定义的,本质就是个
drawable
,不过前景大多数情况下是设置点击效果的,不然设置为纯色或图片,就会把子View给遮住了,除非你不要显示子View。 - 如果需要给CarView加非颜色背景,那加一个
FrameLayout
子View吧,把背景图设置在FrameLayout
的背景里
3.1 使用默认主题的
这种情况需要依赖你应用或Activity使用的主题,我这里使用的主题是继承Theme.AppCompat.Light.DarkActionBar
的,其他主题非继承自Theme.AppCompat
的可能不行。
例,一个CardView属性设置:
app:cardBackgroundColor="@color/colorAccent"
app:cardCornerRadius="5dp"
android:focusable="true"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
效果:
android4.4效果:
MIUI 10 android9.0效果:
3.2 自定义水波纹
就是自定义一个Drawable。这里暂且叫card_foreground
为了兼容Android5.0一下,需要建两个card_foreground文件,一个在drawable(兼容Android5.0一下)目录,一个在drawable-v21(给Android5.0及以上平台用)。
例:
drawable/card_foreground.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!--点击状态是暗黑色-->
<item android:state_pressed="true" android:drawable="@color/click_true"/>
<!--正常状态透明色-->
<item android:state_pressed="false" android:drawable="@color/transparent"/>
</selector>
drawable-v21/card_foreground.xml
ripple就是波纹
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:color="@color/colorPrimary"
android:drawable="@drawable/card_foreground_selector"
>
</ripple>
drawable-v21/card_foreground_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#18ffc400"/>
</shape>
</item>
<item android:state_focused="true"
android:state_enabled="true">
<shape android:shape="rectangle">
<solid android:color="#0f000000"/>
</shape>
</item>
</selector>
最后,cardView设置属性:
app:cardBackgroundColor="@color/colorAccent"
app:cardCornerRadius="5dp"
android:focusable="true"
android:clickable="true"
android:foreground="@drawable/card_foreground"
Android4.4 效果: 效果的话边上多了点间距,可以考虑用把selector
嵌入到inset
设置为前景
MIUI 10 android9.0效果: