StateListAnimator提升和涟漪效应不起作用

时间:2017-07-30 20:50:22

标签: android xml material-design

我希望我的图像按钮能够同时产生连锁反应 海拔。我的图像按钮已经有6dp的静止高度,但我没有得到涟漪效果。以下是我的代码。谁能说出错误是什么?

<ImageButton
    android:id="@+id/share_fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="12dp"
    android:background="@drawable/ripples_on_touch"
    android:elevation="6dp"
    android:padding="14dp"
    android:src="@drawable/ic_share_white_24dp"
    android:stateListAnimator="@animator/lift_on_touch"
    app:borderWidth="0dp"
    tools:targetApi="lollipop" />

V21 / lift_on_touch.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="true" android:state_pressed="true">
        <objectAnimator
            android:duration="@android:integer/config_shortAnimTime"
            android:propertyName="translationZ"
            android:valueTo="12dp"
            android:valueType="floatType"
            />
    </item>
    <item>
        <objectAnimator
            android:duration="@android:integer/config_shortAnimTime"
            android:propertyName="translationZ"
            android:valueTo="0dp"
            android:valueType="floatType"
            />
    </item>
</selector>

V21 / ripples_on_touch.xml

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="?android:colorControlHighlight">
    <item>
        <shape android:shape="oval">
            <solid android:color="#757575"/>
        </shape>
    </item>
</ripple>

请帮帮我。

2 个答案:

答案 0 :(得分:1)

android:state_pressed="true"文件中使用v21/lift_on_touch.xml时,请使ImageButton可单击。

<ImageButton
    android:id="@+id/share_fab"
    ....
    ....
    android:stateListAnimator="@animator/lift_on_touch"
    android:clickable="true" />

答案 1 :(得分:0)

而不是android:background="@drawable/ripples_on_touch",     试试android:foreground="@drawable/ripples_on_touch"

相关问题