gpt4 book ai didi

android - 调用 AppCompatDelegate.setDefaultNightMode 后重新创建启动画面

转载 作者:行者123 更新时间:2023-12-04 07:48:36 25 4
gpt4 key购买 nike

我正在使用 AppCompatDelegate.setDefaultNightMode(mode);在我的 Android 应用程序中设置夜间模式,每当用户在其设备上的共享首选项中选择偏好配置的任何模式时,现在当应用程序从启动画面 Activity 启动时,我使用共享首选项设置 UI 模式, Activity 正在重新创建,然后我的应用程序有 2 个实例,因为启动画面 Intent 登陆 Activity 。
这是我的 SplashScreen.java

  @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
SharedPreferences prefs = getSharedPreferences(UI_MODE, MODE_PRIVATE);
name = prefs.getString("uiMode", "System");
applyUI();
fireSplashScreen();
}

private void applyUI() {
if (name.equals("Dark")){
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
}
else if (name.equals("Light")){
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
}
else {
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM);
}
private void fireSplashScreen() {
Intent i = new Intent(SplashScreen.this, Landing.class);
startActivity(i);
finish();
}
我可以做些什么来避免创建登陆 Activity 的多个实例?

最佳答案

请务必调用 AppCompatDelegate.setDefaultNightMode()尽快地。例如。在调用 super.onCreate() 之前.理想情况下,您应该在 Application.onCreate() 中调用它。 .另外,请确保使用最新版本的 AppCompat (至少 1.1.0),否则你可能会面临这个问题。
this answer更多细节。

关于android - 调用 AppCompatDelegate.setDefaultNightMode 后重新创建启动画面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67086688/

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