作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我有 3 checkBoxs
。我希望当检查每一个checkbox
时s 将值添加到 List<integer>
当取消选中它时,从List<Integer>
中删除该值.
例如:我有 3 ceckbox
。
Android - Ios - Windows 。
我希望在选中 Android 时将数字 2 添加到 List
中.
当选中 Ios 时,将数字 4 添加到 List
中.
当选中Windows时,将数字8添加到List
中.
当取消选中每个checkbox
时s,从 List
中删除此号码.
我写了下面的代码,但没有显示真实的结果!
btnTesterSignUp.setOnClickListener(v -> {
if (signUp_pcCheck.isChecked()) {
userDevicesList.add(0, 2);
} else {
if (userDevicesList.size() > 0)
try {
userDevicesList.remove(0);
} catch (Exception e){
}
}
if (signUp_mobileCheck.isChecked()) {
userDevicesList.add(1, 4);
} else {
if (userDevicesList.size() > 0)
try {
userDevicesList.remove(1);
} catch (Exception e){
}
}
if (signUp_tabletCheck.isChecked()) {
userDevicesList.add(2, 8);
} else {
if (userDevicesList.size() > 0)
try {
userDevicesList.remove(2);
} catch (Exception e){
}
}
Log.e("userDevicesLog", userDevicesList.toString());
});
最佳答案
检查一下:
List<Integer> list = new ArrayList<>();
CheckBox ios = ...
CheckBox android = ...
ios.setOnCheckedChangeListener((buttonView, isChecked) -> {
if (isChecked)
list.add(2);
else if (list.contains(2))
list.remove(Integer.valueOf(2));
});
android.setOnCheckedChangeListener((buttonView, isChecked) -> {
if (isChecked)
list.add(4);
else if (list.contains(4))
list.remove(Integer.valueOf(4));
});
关于java - 如何在 Android 上选中复选框时将项目添加到 List<Integer> 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57344507/
我是一名优秀的程序员,十分优秀!