我需要存储选定的微调器值并从db中检索它并将其显示在另一个微调器中。
那么如何存储值,即使用getselecteditem()
?
同时在检索时,如何将其检索回来并在微调器中显示?
values.put("year", spinYear.getSelectedItemPosition()); //currently storing position
spinYear.setSelection(c.getInt(c.getColumnIndex("year")));//retrieving from sqlite .
而不是那样,我需要存储selectedItem
并将其显示在微调器中。