2

我正在 android 2.1 中编写启动画面。我希望在初始屏幕上按顺序显示 20 张 png 图像。我尝试使用动画列表,但无法做到。

这是我的代码。现在,有一个名为 firstLoadingImage.png 的图像。仅显示 5000 毫秒。然后 myappactivity 开始。但是,在这段等待时间内,我无法更新图像源。你觉得我怎么能做到这一点?

闪屏活动

package myapp.activity;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.ImageView;

public class SplashScreenActivity extends Activity {
    protected boolean _active = true;
    protected int _splashTime = 5000; // time to display the splash screen in ms

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.splashscreen);

        Thread splashTread = new Thread() {
            @Override
            public void run() {
                try {
                    int waited = 0;
                    while(_active && (waited < _splashTime)) {
                        sleep(100);
                        if(_active) {
                            waited += 100;
                        }
                    }
                } catch(InterruptedException e) {
                    // do nothing
                } finally {
                    finish();
                    startActivity(new Intent(SplashScreenActivity.this, MyAppActivity.class));
                    stop();
                }
            }
        };
        splashTread.start();
    }

}

闪屏.xml

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

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

</LinearLayout>
4

3 回答 3

1

帧动画可以通过将其设置为AnimationDrawable背景来实现ImageView

例子:

final AnimationDrawable anim = new AnimationDrawable();
anim.addFrame(Context.getResources().getDrawable(R.drawable.resource_id_of_frame1, durationInMs);
anim.addFrame(Context.getResources().getDrawable(R.drawable.resource_id_of_frame2, durationInMs);
anim.addFrame(Context.getResources().getDrawable(R.drawable.resource_id_of_frame3, durationInMs);
...
anim.addFrame(Context.getResources().getDrawable(R.drawable.resource_id_of_framen, durationInMs);
anim.setOneShot(false);

ImageView myImageView = getImageViewToSet();
myImageView.setBackgroundDrawable(anim);
myImageView.post(new Runnable(){
   public void run(){
      anim.start();
   }
}

因此,让您的初始屏幕成为一个简单的布局,ImageView或者创建一个并将其添加到布局中。设置AnimationDrawable它并运行。

于 2012-04-19T19:11:29.710 回答
0

你可以在这里找到它的教程

于 2013-07-18T15:34:01.893 回答
0

我的猜测是在你的启动线程中调用 sleep 之后使用函数 runOnUiThread() 。制作一个可运行的类来更改 ImageView 背景,并在这个函数中运行? Activity.runOnUiThread()

于 2012-04-19T19:01:19.790 回答