我正在处理一个我要退出应用onBackPressed
的应用。我已经为它编写了代码,但问题是当我按下后退按钮时我的应用程序退出并且没有从RAM中清除,当我在退出后重新打开应用程序时,它从第二个屏幕打开而不是从启动。有什么问题?
代码:
moveTaskToBack(true);
android.os.Process.killProcess(android.os.Process.myPid());
finish();
System.exit(0);
答案 0 :(得分:0)
处理启动画面的最佳方法是从Intent清除闪存堆栈。因此,您无需手动终止应用程序
Intent intent = new Intent(splashActivity.this, SecondActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();
不要忘记删除以下代码
moveTaskToBack(true);
android.os.Process.killProcess(android.os.Process.myPid());
finish();
System.exit(0);
答案 1 :(得分:0)
将此信息放入onCreate()初始屏幕活动中。
@Override
protected void onCreate(@Nullable 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);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
intent = new Intent(ActivitySplachScreen.this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
finish();
}
}, 3000);
}
&安培; activity_splash_screen是。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash"
android:orientation="vertical">
</LinearLayout>