0

我制作了一个可以在 1.6 及更高版本上运行的应用程序,但是一旦我将手机更新到 4.0.4,它就会出现以下错误,不幸的是,测试已经停止并且根本无法运行。有什么理由说明为什么会发生这种情况?也许我需要更改编码以使其在新版本上工作?包 com.droidnova.android;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.MotionEvent;

public class SplashScreen extends Activity {
  protected boolean _active = true;
  protected int _splashTime = 5000;

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

    // thread for displaying the 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("com.droidnova.android.splashscreen.MyApp"));
                stop();
            }
        }
    };
    splashTread.start();
}

@Override
public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        _active = false;
    }
    return true;
}

}

4

1 回答 1

1

一个疯狂的猜测是,您在 UI 线程之外的另一个线程中调用了 finish() 和 startActivity()。使用异步任务而不是线程或使用 Activity.runOnUiThread()。是的,logcat 会很有帮助。

于 2012-07-18T01:08:00.950 回答