如何在AlertDialog中自定义一个视图单选?

时间:2017-03-14 15:06:45

标签: android android-alertdialog

我想在AlertDialog单选项中自定义我的视图,就像在此图像中一样 enter image description here

怎么能这样做?

1 个答案:

答案 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));
                   }
               }
           })

检查android guide