Hi!!! I try to write in English because my English isn't great. I only
hope that isn't late.

Well you try to show the dialog but you don't put the show() method
and I don't know why you put a return.
The code is the following:

case PEOPLE_CHOSING_DIALOG:
>                         AlertDialog.Builder builder = new 
> AlertDialog.Builder(this);
>                         builder.setTitle("Select Travellers");
>                         builder.setMultiChoiceItems(peepses, results, this);
>                         Looper.prepare();
>                         AlertDialog alert = builder.create();
>                         alert.show();
                           break;

On 7 feb, 17:58, Juxtenia <juxte...@googlemail.com> wrote:
> As part of an app I'm writing I've got to get a multi choice dialog
> where the user can select people who are travelling on a holiday.
> However when i try to initiate this dialog it never appears and if I
> try to do anything else I get ANR. The initialising code in the
> onCreateDialog(int id) method is as follows:
>
>                 case PEOPLE_CHOSING_DIALOG:
>                         AlertDialog.Builder builder = new 
> AlertDialog.Builder(this);
>                         builder.setTitle("Select Travellers");
>                         builder.setMultiChoiceItems(peepses, results, this);
>                         Looper.prepare();
>                         AlertDialog alert = builder.create();
>                         return alert;
>
> I know this code is being run but the dialog is not appearing. peepses
> contains the names of the people and results is an all false array of
> boolean. The class this is being run in is WorldActivity which
> implements the OnMultiChoiceClickListener interface.
>
> Any help would be much appreciated, thanks in advance.
>
> Juxtenia

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to