alerttdialog setMultiChoiceItems выделить записи

Здравствуйте, я хочу выделить запись в моем списке многоэтажных домов с цветом фона. У вас есть идея, как я могу это сделать?

multiChoice alertDialog

Это мой код:

                AlertDialog.Builder builder1 = new AlertDialog.Builder(MainActivity.this);
            builder1.setTitle("Some Titel?");
            builder1.setCancelable(true);

            List<String> listItems = new ArrayList<String>();
            listItems.add("iphone");
            listItems.add("samsung");
            listItems.add("nokia");

            final CharSequence[] charSequenceItems = listItems.toArray(new CharSequence[listItems.size()]);
            builder1.setMultiChoiceItems(charSequenceItems, null, null);

            builder1.setPositiveButton("Weiter",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int id) {
                            dialog.cancel();
                        }
                    });
            builder1.setNegativeButton("Abbrechen",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int id) {
                            dialog.cancel();
                        }
                    });
            AlertDialog alert11 = builder1.create();
            alert11.show();

0 ответов

Другие вопросы по тегам