Android Marterial UI 之水波纹效果

作者: WangGavin | 来源:发表于2019-04-08 18:11 被阅读12次

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 设置点击水波纹效果

设置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效果:

image

MIUI 10 android9.0效果:

image

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设置为前景

image

MIUI 10 android9.0效果:

image

相关文章

网友评论

    本文标题:Android Marterial UI 之水波纹效果

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