Domanda

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.?

È stato utile?

Soluzione

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()

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top