18

xml のコードは次のとおりです。

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/minepic" />

ここで minepic は gif アニメーション画像ですが、アプリケーションを実行すると静止画像が表示されます。

Android アプリケーションで .gif 画像をアニメーション化する方法についての解決策はありますか?

4

6 に答える 6

37

ここで正確かつ完全な答えを出すには、段階的に行う必要があることです。

  1. .pngアニメーションのフレームとして機能するさまざまな画像が必要になります。それらをres/drawableフォルダーに保存します。

  2. 次の内容anim.xmlでフォルダーにファイルを作成します。res/drawable

    <?xml version="1.0" encoding="utf-8"?>
    <animation-list xmlns:android="http://schemas.android.com/apk/res/android" 
        android:oneshot="false">
    
        <item android:drawable="@drawable/image_3" android:duration="250" />
        <item android:drawable="@drawable/image_2" android:duration="250" />
        <item android:drawable="@drawable/image_1" android:duration="250" />
        <item android:drawable="@drawable/image" android:duration="250" />
    
    </animation-list>
    
  3. アニメーションを表示するレイアウトxmlファイル内で、次の操作を行います。

    //...
    <ImageView
         android:id="@+id/iv_animation"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_centerHorizontal="true"
         android:contentDescription="Animation" />
    //...
    
  4. レイアウト xml ファイルをロードして呼び出す Java ファイル内 setContentView:

    //...
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    
        final ImageView animImageView = (ImageView) findViewById(R.id.iv_animation);
        animImageView.setBackgroundResource(R.drawable.anim);
        animImageView.post(new Runnable() {
            @Override
            public void run() {
                AnimationDrawable frameAnimation =
                    (AnimationDrawable) animImageView.getBackground();
                frameAnimation.start();
            }
        });
        // ... other code ... 
    }
    // ...
    

アニメーションを停止する.stop()には、AnimationDrawable. 利用可能なメソッドの詳細については、AnimationDrawableのドキュメントを参照してください。それが誰かを助けることを願っています。

于 2013-11-15T00:36:31.993 に答える
14

MovieorWebViewクラスの使用はお勧めしませんが、ImageView代わりにソース ドローアブルを に設定しanimation-listます。例を見てください( mydrawable.xml):

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/image_1" android:duration="100" />
<item android:drawable="@drawable/image_2" android:duration="100" />
<item android:drawable="@drawable/image_3" android:duration="100" />
</animation-list> 

// in your layout : <ImageView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/my_drawable" />

明らかに、このソリューションを使用する前に、.gif を個別の画像にスライスする必要があります。

于 2013-02-22T10:46:16.717 に答える
0

ドローアブルが描画される間にビューが変更される可能性があるため、スレッド (View.post(new Runnable) など) を使用することはお勧めできません (1 つのケースは、異なる背景画像を含む項目で ListView のアニメーション画像を使用することです)。これにより、スレッドが実行されるまでに ImageView がアニメーション化されたリソースではない背景を持っている場合、ClassCastException が発生する可能性があります。

ImageView loadingImg = (ImageView)v.findViewById(R.id.image);
loadingImg.setBackgroundResource(R.drawable.progressdialog);
loadingImg.addOnAttachStateChangeListener(new View.OnAttachStateChangeListener() {
  @Override
  public void onViewAttachedToWindow(View v) {
    AnimationDrawable loadingAnimation = (AnimationDrawable) v.getBackground();
    loadingAnimation.start();
  }

  @Override
  public void onViewDetachedFromWindow(View v) {
  }
});

ここに示す例

于 2016-09-23T17:58:10.733 に答える
0
And i think this is the one way of solution by writing the anim-space.xml 
In which the slices of the image are added to the items one by one and setting that xml to the imageview of our layout xml.

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

この開発者リンクでは、明確に定義されています。

于 2013-02-22T11:05:29.883 に答える