gpt4 book ai didi

java - 在启动画面期间按主页按钮几秒钟后,Android 应用程序打开

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:44:41 25 4
gpt4 key购买 nike

我遇到了一个问题,我似乎无法找出原因。

当您启动该应用程序时,启动画面会先显示 2.5 秒,然后才能完成并开始新的 Activity 。如果您在此期间按主页或后退按钮,应用程序将正常关闭。但是,几秒钟后(超过 2.5),应用程序将打开并从启动画面后的 Activity 开始。

如果您能提供任何关于为什么会发生这种情况的帮助,我们将不胜感激!

这是启动画面的实现(但是我不相信这里有任何东西会导致这个问题,因为我尝试了不同的实现)

`public class SplashScreenActivity extends AppCompatActivity {

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

Thread myThread = new Thread(){
@Override
public void run() {
try {
sleep(2500);
Intent intent = new Intent(getApplicationContext(),MainActivity.class);
startActivity(intent);
finish();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
};
myThread.start();`

这是 list

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.VIBRATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".activities.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar"
android:launchMode = "singleInstance">
</activity>
<activity android:name=".activities.SplashScreenActivity"
android:theme="@style/Theme.AppCompat.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".alert.BroadCaster" >
</receiver>
<service android:name=".timer.TimerService"
android:process=":timerservice" />
</application>

最佳答案

发生这种情况是因为您正在创建一个新的 Thread 并且在您将应用程序置于后台后该线程仍然存在。您可以使用 Handler 更改您的方法。如果您需要您的下一个 Activity 在初始屏幕处于后台时不会开始,您必须在延迟开始之前存储当前时间。

private static final long SPLASH_SCREEN_MS = 2500;

private long mTimeBeforeDelay;
private Handler mSplashHandler;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
// Create a new Handler.
mSplashHandler = new Handler();
}

@Override
protected void onResume() {
super.onResume();
// The first time mTimeBeforeDelay will be 0.
long gapTime = System.currentTimeMillis() - mTimeBeforeDelay;
if (gapTime > SPLASH_SCREEN_MS) {
gapTime = SPLASH_SCREEN_MS;
}
mSplashHandler.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}
}, gapTime);
// Save the time before the delay.
mTimeBeforeDelay = System.currentTimeMillis();
}

@Override
protected void onPause() {
super.onPause();
mSplashHandler.removeCallbacksAndMessages(null);
}

关于java - 在启动画面期间按主页按钮几秒钟后,Android 应用程序打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43598734/

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