我目前有一个AlertDialog,用户可以在其中选择三个选项(在名为itemsOutput1的数组中定义)。尽管我希望能够通过将默认选择设置为先前存储的共享首选项来预测用户将基于先前的选择给出的答案,但此方法效果很好。

说我知道我想将默认设置设置为itemsOutput1中的第二项,如何将其应用于.setSingleChoiceItems,以便在出现对话框时已经选择第二项?

case 1:
return new AlertDialog.Builder(this)
.setIcon(bmd)
.setTitle("What do you want the output to be?")
.setPositiveButton("OK", new
DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which)
    {
callShapeActivity();
}
})
.setSingleChoiceItems(itemsOutput1, 0, new
DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
//---get the SharedPreferences object---
prefs = getSharedPreferences(prefName, MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();

//---set the user inputs to prefo's---
editor.putString(OUTPUT_KEY, itemsOutput1[which]);
editor.commit();
}
    }
)
.create();

最佳答案

查看先前的答案link

如果我能很好地理解您的问题,这将对您有所帮助。

10-08 13:54