Android开发经验谈Android开发Android技术知识

Android Marterial UI 之水波纹效果

2019-04-08  本文已影响12人  WangGavin

1 相关Android SDK资源

?android:attr/selectableItemBackground表示引用主题中的selectableItemBackground这个属性,而主题中selectableItemBackground属性指向的是一个drawable资源,当然这个主题属性是兼容了Android平台的,有的属性则没有。

2 普通可点击View设置点击水波纹效果

2.1 使用默认主题的

待补充

2.2 自定义水波纹

待补充

3 CardView 设置点击水波纹效果

参考CardView 设置点击水波纹效果

设置CardView的android:background属性是不起作用的

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
上一篇 下一篇

猜你喜欢

热点阅读