如何使用微调器对象从前一个选定值设置微调器?

时间:2015-08-14 07:09:05

标签: android android-spinner custom-adapter

CustomeSpinerAdapter jobAdapter = new CustomeSpinerAdapter(
            getApplicationContext(), R.layout.custom_spiner_row,
            jobListData);

    spJobType.setAdapter(jobAdapter);

这里我想设置spiner.setseleciton(position);值对 我以前的数据库格式为jobID=44

1 个答案:

答案 0 :(得分:0)

我认为此解决方案的最佳实践是SharedPrefrences类。

SharedPrefrences AppData = PrefrencesManager.getDefaultSharedPrefrences(this);
AppData.edit().putString("prevSpinnerValue",jobID);

并且还有简单的片段:

AppData.getString("prevSpinnerValue",null);

并将微调器的选定项设置为从prefs获得的值以上。

也许这个帮助。