首次启动时启动画面仅 运行 秒,后续启动时不会 运行
Splash Screen only runs on first launch, and won't run on proceeding launches
我创建了启动画面,它 运行 符合预期。但是,一旦应用程序启动一次并再次启动,启动画面就不会显示。它只在第一次启动时显示,这不是它应该如何工作的。 我不知道如何解决这个问题。启动画面代码贴在下面。
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.content.Intent;
public class SplashScreenActivity extends AppCompatActivity {
private int SLEEP_TIMER = 5;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
LogoLauncher logoLauncher = new LogoLauncher();
logoLauncher.start();
}
private class LogoLauncher extends Thread{
public void run(){
try{
sleep(1000 * SLEEP_TIMER);
}catch(InterruptedException e){
e.printStackTrace();
}
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}
}
}
编辑:我正在 android 工作室中用我的物理设备进行测试。当我点击 运行 并且应用程序启动时,它可以正常工作。如果我退出该应用程序并从我的 phone* 再次启动它它不起作用
Android 清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jstudios.main">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="MainApp"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".SplashScreenActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden"
android:label="MainApp"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
</activity>
</application>
</manifest>
编辑
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.content.Intent;
import android.os.Handler;
public class SplashScreenActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
Handler h =new Handler() ;
h.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}, 5000);
}
}
请使用处理程序触发您的 startActivity
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
Handler h =new Handler() ;
h.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}, 5000);
或使用Timer
new Timer().schedule(new TimerTask() {
@Override
public void run()
{
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish()
}
}, 5000);
让主线程休眠以显示启动画面确实是一种糟糕的做法。
启动画面应该只在应用程序加载到主 activity 时显示(不是固定时间)。
我推荐这种方法,我一直在自己的应用程序中使用它:
https://www.bignerdranch.com/blog/splash-screens-the-right-way/
我创建了启动画面,它 运行 符合预期。但是,一旦应用程序启动一次并再次启动,启动画面就不会显示。它只在第一次启动时显示,这不是它应该如何工作的。 我不知道如何解决这个问题。启动画面代码贴在下面。
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.content.Intent;
public class SplashScreenActivity extends AppCompatActivity {
private int SLEEP_TIMER = 5;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
LogoLauncher logoLauncher = new LogoLauncher();
logoLauncher.start();
}
private class LogoLauncher extends Thread{
public void run(){
try{
sleep(1000 * SLEEP_TIMER);
}catch(InterruptedException e){
e.printStackTrace();
}
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}
}
}
编辑:我正在 android 工作室中用我的物理设备进行测试。当我点击 运行 并且应用程序启动时,它可以正常工作。如果我退出该应用程序并从我的 phone* 再次启动它它不起作用
Android 清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jstudios.main">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="MainApp"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".SplashScreenActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden"
android:label="MainApp"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
</activity>
</application>
</manifest>
编辑
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.content.Intent;
import android.os.Handler;
public class SplashScreenActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
Handler h =new Handler() ;
h.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}, 5000);
}
}
请使用处理程序触发您的 startActivity
setContentView(R.layout.activity_splash_screen);
getSupportActionBar().hide();
Handler h =new Handler() ;
h.postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish();
}, 5000);
或使用Timer
new Timer().schedule(new TimerTask() {
@Override
public void run()
{
Intent intent = new Intent(SplashScreenActivity.this, MainActivity.class);
startActivity(intent);
SplashScreenActivity.this.finish()
}
}, 5000);
让主线程休眠以显示启动画面确实是一种糟糕的做法。 启动画面应该只在应用程序加载到主 activity 时显示(不是固定时间)。
我推荐这种方法,我一直在自己的应用程序中使用它: https://www.bignerdranch.com/blog/splash-screens-the-right-way/