gpt4 book ai didi

android - 限制 MultiChoice AlertDialog 中的选择,Android

转载 作者:太空宇宙 更新时间:2023-11-03 11:34:56 27 4
gpt4 key购买 nike

我有一个 MultiChoice AlertDialog,其中有 25 个选择。

我想让用户只选择 25 个中的任意 5 个。

当她选择第 6 个选择时,我想取消选中它并显示一条 Toast 消息,表明她只能做出 5 个选择。

MultiChoice AlertDialog 是否可行?请帮忙!

最佳答案

OP 的精确解是:

final boolean[] selected = new boolean[25];

builder.setMultiChoiceItems(R.array.values, selected, new DialogInterface.OnMultiChoiceClickListener() {

int count = 0;

@Override
public void onClick(DialogInterface dialog, int which, boolean isChecked) {
count += isChecked ? 1 : -1;
selected[which] = isChecked;

if (count > 5) {
Toast.makeText(getActivity(), "You selected too many.", Toast.LENGTH_SHORT).show();
selected[which] = false;
count--;
((AlertDialog) dialog).getListView().setItemChecked(which, false);
}
}

});

关于android - 限制 MultiChoice AlertDialog 中的选择,Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22781502/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com