gpt4 book ai didi

java - Twitter 喜欢 Android ImageView 的动画?

转载 作者:行者123 更新时间:2023-11-29 03:05:05 25 4
gpt4 key购买 nike

iOS 上的 Twitter 在开始时有这个漂亮的小鸟动画。

enter image description here ( Source )

如何使用 Android ImageView 制作这样的动画?

最佳答案

简单如:

findViewById(R.id.image_view).animate()
.setStartDelay(500)
.setDuration(1000)
.scaleX(20)
.scaleY(20)
.alpha(0);

确保 ImageView 在您的布局中居中:

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@mipmap/ic_launcher"/>
</FrameLayout>

要进一步修改动画,您可以:

  • 延迟动画
  • 使用减速(或其他)插值器
  • 修改比例因子

关于java - Twitter 喜欢 Android ImageView 的动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32562549/

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