Search code examples
androidandroid-listviewandroid-alertdialogcustomdialog

Custom alertDialog with listview android


How to make a custom AlertDialog in listView format and each listItem must contain a image and textview.

There is a intent passing on clicking of individual listItem.

How to do this.?


Solution

  • final Dialog innerDialog = new Dialog(context);
    innerDialog.setTitle("Title");
    innerDialog.setContentView(R.layout.alert);
    

    Add custom list to alert Layout and you can find views by innerDialog.findViewById()