0

Eclipse で jpg のような gif を宣言できますか?

<ImageView
    android:contentDescription="@string/ppant"
    android:id="@+id/gifYesOrNo"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/button4"
    android:layout_alignLeft="@+id/button4"
    android:layout_alignRight="@+id/button4"
    android:src="@drawable/gif" />

ありがとう

4

1 に答える 1

0

宣言できますが、アニメーション化されません。そうしたい場合は、webview (良い解決策ではありません) と VideoView を使用できます。ここでいくつかのヘルプを見つけることができます:アニメーション GIF を表示します。本当に ImageView になりたい場合は、これをチェックしてください: Playing an animation GIF image file in imageview。あなたが決めるものは何でも、ここで多くの便利なものを見つけることができます: http://droid-blog.net/2011/10/14/tutorial-how-to-use-animated-gifs-in-android-part-1/ . お役に立てれば。

于 2013-08-30T23:33:53.297 に答える