我正在创建一个应用,其中使用了Android支持库的主题DayNight。
这是themes.xml中的代码
<style name="ActivityTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
我在清单中使用configChanges来管理轮换。
android:configChanges="keyboardHidden|orientation|screenSize"
在AppcompatActivity的onCreate中,我添加了:
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES)
问题是当我使用setDefaultNightMode时,android:configChanges停止工作,并在每次旋转中重新创建活动。
欢迎您提供任何帮助
答案 0 :(得分:1)
可能您需要在清单中添加' uiMode '参数:
android:configChanges="orientation|screenSize|uiMode|keyboardHidden"
答案 1 :(得分:0)
答案 2 :(得分:0)
此issue已通过AppCompat v1.1.0-alpha05修复。
参见此处:https://developer.android.com/preview/features/darktheme#changing_themes_in-app
注意:从
AppCompat
v1.1.0-alpha05开始, setDefaultNightMode()不会自动重新创建任何已开始的活动。
将您的appcompat依赖项更新为latest版本,当前为1.1.0-rc01。
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
如果您添加了清单,请不要忘记从清单中的uiMode
中删除android:configChanges
标志。