我已经使用 Kotlin 在 Android Studio 中创建了一个待办事项列表应用程序,并希望添加一个在常规主题和夜间模式主题之间切换的选项菜单项。我正在关注本教程
我已将所有内容输入到现有应用程序中,但在 MainActivty.kt 文件中出现错误“未解决的参考:夜间模式”。我也收到错误“期待一个元素”和“期待一个表达式”。我的 Android Studio 版本是 4.2.1。我附上了 MainActivity.kt、main_menu.xml 和 strings.xml 中的代码。
MainActivity.kt
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
menuInflater.inflate(R.menu.main_menu, menu)
intent nightMode = AppCompatDelegate.getDefaultNightMode()
if (nightMode == AppCompatDelegate.MODE_NIGHT_YES){
menu?.findItem(R.id.night_mode)?.setTitle(R.string.day_mode)
} else{
menu?.findItem(R.id.night_mode)?.setTitle(R.string.night_mode)
}
return true
}
override fun onOptionsItemSelected(item: MenuItem): Boolean {
if(item.itemId ==R.id.night_mode){
intent nightMode = AppCompatDelegate.getDefaultNightMode()
if (nightMode == AppCompatDelegate.MODE_NIGHT_YES) {
AppCompatDelegate.setDefaultNightMode(
AppCompatDelegate.MODE_NIGHT_NO)
} else {
AppCompatDelegate.setDefaultNightMode(
AppCompatDelegate.MODE_NIGHT_YES)
}
}
recreate()
return true
}
main_menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/night_mode"
android:title="@string/night_mode>"/>
</menu>
字符串.xml
<resources>
<string name="app_name">To do List</string>
<string name="night_mode">Night Mode</string>
<string name="day_mode">Day Mode</string>
</resources>