我一直试图使这两个起作用,但是无论我如何重新排列代码,总会有一些抱怨:未初始化的var或很有趣。
这是令人讨厌的代码段:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
var sp : SharedPreferences = this.getSharedPreferences("com.example.downloadtest",0 )
fun storeUnits(unit:String){
sp.edit().putString("units", unit).apply()
}
override fun onOptionsItemSelected(item: MenuItem): Boolean {
super.onOptionsItemSelected(item)
if (item.itemId == R.id.settings){
//toast("Settings clicked")
alert("Choose Units") {
title = "Units"
positiveButton("Imperial") {
toast("Imperial Measurements Chosen")
storeUnits("imperial")
}
negativeButton("Metric") {
toast("Metric Measurements Chosen")
storeUnits("metric")
}
var 'sp'必须位于它的位置(对吗?)。有趣的'商店单位'也可以。但是,我不能将'覆盖onOptionsItemSelected的乐趣'放置在另一个覆盖函数中;但是如果我将其放置在外面,则无法与其他两个一起使用。请帮忙..
最佳答案
onOptionsItemSelected方法和storeUnits方法都应位于onCreate方法的之外的。您可以改为使 sp 成为全局变量:
在onCreate方法之前将其声明为全局变量(在 Activity 类内,但在onCreate外):
然后在onCreate方法中对其进行初始化:lateinit var sp : SharedPreferences
sp = this.getSharedPreferences("com.example.downloadtest",0 )
关于android - 代码的位置,以便 'SharedPreferences'与 'onOptionsItemSelected'一起使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/64342448/