0

我想让 ImageView 改变图像。ImageView 是跑步者,我想让他跑步?

  • 如何使用代码更改 ImageView src 但具有最佳性能...
  • 我可以在布局上使用 GiF 动画吗?
4

3 回答 3

1

帧动画 - 如果您只有少量图像,这是最简单的。

http://developer.android.com/reference/android/graphics/drawable/AnimationDrawable.html

于 2013-08-12T09:23:26.167 回答
0

贵吗?一秒1000次?gif 不适用于布局...您可以使用动画或线程(慢)

独立地为多个图像视图设置动画

快速动画指南 http://www.javacodegeeks.com/2011/01/android-animations-quick-guide.html

于 2013-08-12T09:09:09.103 回答
0

试试这个https://github.com/DanielMartinus/Konfetti

或者

在项目中使用 GIF 使用implementation pl.droidsonroids.gif:android-gif-drawable:1.2.4.

<pl.droidsonroids.gif.GifImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/mygif"/>
于 2018-09-01T11:16:02.463 回答