怎样在AlertDialog点击选项后,再次打开时可以记住上次的选择项
1个回答
展开全部
AlertDialog所在Activity加个字段
int current = 0;
String[] str;//自己添数据
new AlertDialog.Builder(this).setTitle(title).setSingleChoiceItems(
str, current, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
current = which;
//加你的点击响应
}
}).setNegativeButton("取消", null);
builder.show();
int current = 0;
String[] str;//自己添数据
new AlertDialog.Builder(this).setTitle(title).setSingleChoiceItems(
str, current, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
current = which;
//加你的点击响应
}
}).setNegativeButton("取消", null);
builder.show();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询