gpt4 book ai didi

java - 为什么我的第一个 Activity 没有显示?

转载 作者:行者123 更新时间:2023-12-01 11:47:22 24 4
gpt4 key购买 nike

我制作了一个启动画面,但我的启动画面没有显示。 4 秒后,将显示第二个闪屏。我想显示我的闪屏 4 秒。这是我的代码:

package com.geven.headsoccer.android;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;


public class SplashScreen extends Activity {


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
try {
Thread.sleep(4000);
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
startActivity(new Intent("com.geven.headsoccer.LIBGDX_GAME"));
}



}

最佳答案

如果你想显示 SplashScreen 4 秒,为什么不使用 Handler?

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);

new Handler().postDelayed(new Runnable() {

@Override
public void run() {
startActivity(new Intent(SplashScreen.this, MainActivity.class));
finish();
}
}, 4000);
}

关于java - 为什么我的第一个 Activity 没有显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29052881/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com