So, if I create an AlertDialog like so:

AlertDialog.Builder b = new AlertDialog.Builder();
b.setItems(MyStringArray, MyListener);
b.create().show();

And then I want to update the items in the list, i.e. MyStringArray has changed to have more or fewer items. I can't seem to find a way to do this. So far, I've tried getting the ListView from the AlertDialog, but I can't seem to get .setAdapter to work. Is this the right approach, or is there a better way to do this?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I haven't tried this out myself, but from all the other apps I've built I'm pretty sure this will solve your problem.

Instead of using setItems, try using the setAdapter method and pass in an ArrayAdapter that has been initialized with the data from your Array of String. Then, when you know that the data has changed, you can use getListView to get your View object and from there call getAdapter so that now you're working directly with the dataset. You can clear it, and re-initialize it if you like, or just add / remove the items as you like. From the adapter object, if you call notifyDataSetChanged it should trigger a re-draw using the new data set that you just supplied to the adapter.

Hope that helps you out. Let me know if it doesn't.

DSC

link|improve this answer
I'm still a bit of a novice when working with these dialogs. Should I keep the DialogInterface.OnClickListener as the OnClickListener, or use a View.OnClickListener as I might with a normal Listview? – Paul Jan 16 at 7:21
Kinda stupid of me to ask that when I could just try it. Looks like DialogInterface.OnClickListener is the way to go. – Paul Jan 16 at 7:27
feedback

You can use the same instance of the AlertDialog.Builder builder and just set the current or latest array items to the builder builder.setItems(new_arr, listener); and just call builder.create().show();. This is populate your new AlertDialog with the new values of String array.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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