I create an alert dialog that has a basic checkbox list in it when I press a button. If the items have been checked before, I want to be able to check the checkboxes for the user. I have accomplished this by manipulating "onPrepareDialog" like so:

@Override
protected void onPrepareDialog(int id, Dialog dialog) {
 Log.v("dialog", "On prepare dialog");  
 ListView lv = ((AlertDialog) dialog).getListView();


    if (lv == null){
        return;
    }

    String[] names = Utility.convertStringToArr(currentTravelers, ", ");
    for(int i = 0;i < lv.getChildCount();i++){

        for(int j = 0;j< names.length;j++){
            String tn = lv.getItemAtPosition(i).toString();
            if(tn.equalsIgnoreCase(names[j])){
                lv.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
                 lv.setItemChecked(i, true);
            }
        }
    }
}

This works fine, EXCEPT for the very first time I select the button. It will just show me the checklist with nothing selected. If I cancel out and hit it again, I will then see the correct names checked. I've tried tracing out the ListView child count, and it comes up as 0 the first time.

Is there anyway around this so that the very first time the alert dialog comes up it actually populates the listview so I can check the correct names?

Is there something I am not overriding or adapting? I am at a loss here.

Thanks!

link|improve this question

Have you try onCreateDialog(int id)? – eric2323223 Sep 26 '11 at 5:14
How do you suggest I use that to fix this problem? – Nick Oct 10 '11 at 15:06
feedback

1 Answer

up vote 1 down vote accepted

Well I was able to get around this by putting a post delay before it populates the listview:

Handler handler = new Handler(); 
    handler.postDelayed(new Runnable() { 
     public void run() { //code to manipulate goes here
}}, 100);

This basically makes it wait 100 milliseconds, which seems to be enough time for the dialog information to load into the listview. Does anyone know a more efficient way of doing this?

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.