0

ドローアブルリソースから11個の画像をロードし、それらをImageViewに遅延して表示しようとしています。実際には、AnimationDrawableのようなことを行うと、OutOfMemory例外とクラッシュが発生するためです。それは車輪の再発明といくつかの練習の両方ですが、それでもアプリをクラッシュさせます。imgViewを初期化して実行するとimgView.setImageResource(R.drawable.pic1);、画像が読み込まれます。ハンドラーを設定して以下のようにpostDelayed()を実行しようとすると、Logcatに何も表示されずにアプリがクラッシュする前に、レイアウトの背景画像を見ることができます。コードは次のとおりです。

package com.forms.test;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;

public class Animacia extends Activity {

final static int[] imgGalleryResources = { 
    R.drawable.pic1, R.drawable.pic2, R.drawable.pic3,
    R.drawable.pic4, R.drawable.pic5, R.drawable.pic6,
    R.drawable.pic7, R.drawable.pic8, R.drawable.pic9,
    R.drawable.pic10, R.drawable.pic11
};

ImageView imgView;
Handler   handlerTimer = new Handler();

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.animation);

    initGUI();
}

private void initGUI() {
    int i;
    imgView = (ImageView)findViewById(R.id.imgView);
    imgView.setAnimation(AnimationUtils.loadAnimation(this, R.anim.alpha));

    for(i = 0; i < imgGalleryResources.length ;i++) {
        final int res = imgGalleryResources[i];
        handlerTimer.postDelayed(
                new Runnable() {
                    public void run() {
                        imgView.setImageResource(res);
                    }
                }, 
                5000
        );
    }
}
}

このコードに関連するのは、layout/animation.xmlのimgViewです。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical" 
   android:layout_width="fill_parent" 
   android:layout_height="fill_parent"
   android:background="@drawable/heart"
   android:id="@+id/frameLayout1">

   <ImageView
       android:id="@+id/imgView"  
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" />

</FrameLayout>

そして、anim / alpha.xmlからのimgViewのアルファアニメーション:

<?xml version="1.0" encoding="utf-8"?>
<alpha>
    <alpha
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromAlpha="0.3"
android:toAlpha="0.9"
android:duration="2000" />
</alpha>

すべてのヒントやコメントを歓迎します。

4

1 に答える 1

1

この方法を試しましたか?

private int pos = 0;
private Timer timer;
private static final int UPDATE_PICTURE = 5;
private void initGUI() {
    imgView = (ImageView)findViewById(R.id.imgView);
    imgView.setAnimation(AnimationUtils.loadAnimation(this, R.anim.alpha));

    handlerTimer = new Handler() {
        public void handleMessage(Message msg) {
            if(msg.what == UPDATE_PICTURE)
            {
                 //start animation here
                imgView.setImageResource(msg.arg1);
                imgView.invalidate();
            }
        }
    };

    timer = new Timer();
    timer.scheduleAtFixedRate(new TimerTask() {

        public void run() {
            Message msg = new Message();
            msg.what = UPDATE_PICTURE;
            msg.arg1 = imgGalleryResources[pos++];
            handlerTimer.sendMessage(msg);
            if(pos>=imgGalleryResources.length)
                timer.cancel();
        }
    }, 0, 2000);

}
于 2013-02-20T23:36:22.417 に答える