首页 > 解决方案 > 谁能看到为什么我的 Spinner 中没有保存任何输入?

问题描述

我创建了一个微调器来显示用户可以选择的类别,当它被选中时,我希望将选项保存在某处。

我正在使用 SharedPreference 来存储 Spinner 的值,但由于某种原因它没有保存选定的选项,我想知道为什么它没有保存?

activity_main.xml

<Spinner
                 android:layout_width="match_parent"
                 android:layout_height="75dp"
                 android:id="@+id/statusFilter"
                 android:layout_gravity="center" />

  <Button
                    android:id="@+id/btnAdd"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="16dp"
                    android:paddingTop="8dp"
                    android:paddingBottom="8dp"
                    android:stateListAnimator="@null"
                    android:onClick="btnAdd"
                    android:text="@string/button_addLetter"
                    android:background="@color/design_default_color_secondary_variant"
                    android:textColor="@color/design_default_color_on_primary"
                    android:textSize="16sp" />

主要活动

class NewsActivity : AppCompatActivity(), AnkoLogger, DatePickerDialog.OnDateSetListener, TimePickerDialog.OnTimeSetListener {

    var letter = NewsItemModel()
    lateinit var app : MainApp
    var edit = false
    val IMAGE_REQUEST = 1

 override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_letter)
        app = application as MainApp
   


 val dropDownList = arrayOf("Latest", "Coronavirus Updates", "Crime", "Traffic and Travel", "Business", "Politics", "Weather", "Education", "Health")

        val adapter = ArrayAdapter(this, android.R.layout.simple_spinner_item, dropDownList)
        adapter.setDropDownViewResource(android.R.layout.simple_spinner_item)
        statusFilter.adapter = adapter
        statusFilter.onItemSelectedListener = object : AdapterView.OnItemSelectedListener{
   val preferences = getSharedPreferences("sharedPrefs", Context.MODE_PRIVATE)

            override fun onNothingSelected(parent: AdapterView<*>?) {
            }

 override fun onItemSelected(parent: AdapterView<*>?, view: View?, position: Int, id: Long) {
                if(statusFilter.selectedItemPosition == 1){
                    preferences.edit().putInt("POSITION_KEY",1).apply() //Puts 0, 1,2,3 with key "POSITION_KEY"
                }
                if(statusFilter.selectedItemPosition == 2){
                    preferences.edit().putInt("POSITION_KEY",2).apply() //Puts 0, 1,2,3 with key "POSITION_KEY"
                }
                if(statusFilter.selectedItemPosition == 3){
                    preferences.edit().putInt("POSITION_KEY",3).apply()
                }
                if(statusFilter.selectedItemPosition == 4){
                    preferences.edit().putInt("POSITION_KEY",4).apply()
                }
                if(statusFilter.selectedItemPosition == 5){
                    preferences.edit().putInt("POSITION_KEY",5).apply()
                }
                if(statusFilter.selectedItemPosition == 6){
                    preferences.edit().putInt("POSITION_KEY",6).apply()
                }
                if(statusFilter.selectedItemPosition == 7){
                    preferences.edit().putInt("POSITION_KEY",7).apply()
                }
                if(statusFilter.selectedItemPosition == 8){
                    preferences.edit().putInt("POSITION_KEY",8).apply()
                }
                if(statusFilter.selectedItemPosition == 9){
                    preferences.edit().putInt("POSITION_KEY",9).apply()
                }
            }

            private fun condition1(){
                preferences.getInt("POSITION_KEY",1)
            }
            private fun condition2(){
                preferences.getInt("POSITION_KEY",2)
            }
            private fun condition3(){
                preferences.getInt("POSITION_KEY",3)
            }
            private fun condition4(){
                preferences.getInt("POSITION_KEY",4)
            }
            private fun condition5(){
                preferences.getInt("POSITION_KEY",5)
            }
            private fun condition6(){
                preferences.getInt("POSITION_KEY",6)
            }
            private fun condition7(){
                preferences.getInt("POSITION_KEY",7)
            }
            private fun condition8(){
                preferences.getInt("POSITION_KEY",8)
            }
            private fun condition9(){
                preferences.getInt("POSITION_KEY",9)
            }
        }


fun btnAdd(view: View) {
        val pref = getPreferences(Context.MODE_PRIVATE)
        val editor = pref.edit()

        editor.putString("SELECTION", statusFilter.toString())

        editor.commit()

        Toast.makeText(applicationContext, "Saved test1", Toast.LENGTH_LONG).show()
    }

 val pref = getPreferences(Context.MODE_PRIVATE)
        val SELECTION = pref.getString("SELECTION", "")
        statusFilter(SELECTION)
        }

标签: androidandroid-layoutandroid-spinnerandroid-preferences

解决方案


推荐阅读