Android: диалог оповещения с несколькими вариантами выбора

Можно ли отобразить диалог оповещения с несколькими вариантами выбора с отключенными элементами (строками) в списке? ПроверяяНикто" Опция в списке все опции в списке должны быть отключены, кроме опции "Никто", если я сниму флажок "Никто" нужно включить все элементы еще раз?

    AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(context);
    dialogBuilder.setMultiChoiceItems(optionsList,selectionState,new
                                       DialogInterface.OnMultiChoiceListener()
    {

      @Override
      public void onClick(DialogInterface dialog,int which, boolean isChecked){

      final AlertDialog alertDialog = (AlertDialog) dialog;
      final ListView alertDialogList = alertDialog.getListView();

        // Here how to make the items in the list as disabled when None is clicked
        // None OPtion is one among  in optionsList string array

         // A loop to disable all items other than clicked one 
         for (int position = alertDialogList.getCheckedItemPosition(); position<                                 alertDialogList.getChildCount; position++)
         {
                alertDialogList.getChildAt(position).setEnabled(false);
         }

      }
    });        

Ответы на вопрос(3)

Ваш ответ на вопрос