我想在AlertDialog单选项中自定义我的视图,就像在此图像中一样 enter image description here
怎么能这样做?
答案 0 :(得分:1)
如果您想要更多自定义选项
,请使用此选项alertDialogue.setContentView(/*Layout*/)
或者如果你想要一些选择,请使用它。
alertDialogue.setMultiChoiceItems(R.array.toppings, null,
new DialogInterface.OnMultiChoiceClickListener() {
@Override
public void onClick(DialogInterface dialog, int which,
boolean isChecked) {
if (isChecked) {
// If the user checked the item, add it to the selected items
mSelectedItems.add(which);
} else if (mSelectedItems.contains(which)) {
// Else, if the item is already in the array, remove it
mSelectedItems.remove(Integer.valueOf(which));
}
}
})