gpt4 book ai didi

android - android中 float Action 按钮的简单动画?

转载 作者:太空狗 更新时间:2023-10-29 15:35:44 25 4
gpt4 key购买 nike

我需要一个非常简单的解释,说明如何在单击此“添加到购物车”FloatingActionButton 时对其进行动画处理。我想要的只是一个流畅的“左右”或“上下”运动动画。

请看下面的代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1"
android:background="@color/cardview_light_background">

<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.FloatingActionButton
android:layout_width="54dp"
android:layout_height="54dp"
android:layout_gravity="bottom|right"
android:src="@mipmap/ic_add_shopping_cart_black_24dp"
android:layout_marginBottom="40dp"
android:layout_marginRight="30dp"
app:backgroundTint="@android:color/holo_blue_light" />

</android.support.design.widget.CoordinatorLayout>
</LinearLayout>

提前致谢!

最佳答案

尝试 AndroidViewAnimations图书馆。这个库提供了简单的方法来动画你的 View 。有很多效果。例如

YoYo.with(Techniques.Tada)
.duration(700)
.playOn(findViewById(R.id.edit_area));

关于android - android中 float Action 按钮的简单动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42055571/

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