gpt4 book ai didi

android - StateListAnimator 提升和波纹效果不起作用

转载 作者:数据小太阳 更新时间:2023-10-29 02:38:53 25 4
gpt4 key购买 nike

我希望我的图像按钮能给它带来链式 react 海拔。我的图像按钮已经有 6dp 的静止高度,但我没有得到链式 react 。下面是我的代码。谁能告诉我错误是什么?

<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>

请帮帮我。

最佳答案

当您在 v21/lift_on_touch.xml 文件中使用 android:state_pressed="true" 时,请将 ImageButton 设为可点击。

像这样

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

关于android - StateListAnimator 提升和波纹效果不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45404568/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com