ドローアブルリソースから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>
すべてのヒントやコメントを歓迎します。