I have this code to show a dialog with singlechoice(radio) options.

AlertDialog ad = new AlertDialog.Builder(this)
.setCancelable(false)
.setIcon(R.drawable.alert_dialog_icon)
.setTitle(R.string.choose_one)
.setSingleChoiceItems(seq, pos,null)
.setPositiveButton( R.string.ok, new DialogInterface.OnClickListener() { 
  public void onClick( DialogInterface dialog, int whichButton) 
  { 
    // dialog dismissed
  } 
 }).create();

How do I get the choice that has been selected?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

I believe that you use an OnClickListener for setSingleChoiceItems(), to listen whenever an item has been selected; then once the user hits okay, you set that item in stone. Right now you're just passing null, so nothing you can't pick up which item was selected.

link|improve this answer
1  
So you say I have to temporarily store the item when the event fires, and to save when the dialog is dismissed? – Pentium10 Mar 22 '10 at 17:17
I guess that theoretically you could do something fancier; I wonder if AlertDialog.getListView() would get you the choice list, then you could parse out which of those items is checked. But that seems like a lot more work than temporarily storing the item when the event fires. – Daniel Lew Mar 22 '10 at 18:17
You can use AlertDialog.getListView().getSelectedItem() but that didn't seem to give me what I wanted. – Ian McLaird Nov 4 '11 at 15:14
feedback

I tried to use ListView.setSelection(int) but it never worked as expected so instead I decided to make use of View.setTag() to temporarily store the selected position.

.setSingleChoiceItems(adapter, -1,
        new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
            ListView lv = ((AlertDialog)dialog).getListView();
            lv.setTag(new Integer(which));
        }
})

The tag can then be accessed easily after a button click.

.setPositiveButton(R.string.button_text,
    new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
        ListView lv = ((AlertDialog)dialog).getListView();
        Integer selected = (Integer)lv.getTag();
        if(selected != null) {
            // do something interesting
        }
    }
})
link|improve this answer
feedback

1). create Array.

final ArrayList<String> arrData = new ArrayList<String>();

2). add data to array you have created.

if (cursor != null) {
            if (cursor.moveToFirst()) {
                do {

                    arrData .add(cursor.getString(1)); 
                                             // (1 = int columnIndex)

                } while (cursor.moveToNext());
            }
        }

3). get data like this.

public void onClick(DialogInterface dialog, int item) {

                        Log.d("Selected", arrData.get(item) + "");

                    }

4). that's all :)

link|improve this answer
feedback
EditText et = (EditText)findViewById(R.id.editText9);

int a = Integer.valueOf(item);

et.setText(items[a]);
link|improve this answer
Can you elaborate any on this? Code with no explanation is not as helpful. – Michael Myers May 18 '11 at 16:58
I can't see how this is in anyway relevant. – Matt Briançon Feb 9 at 13:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.