Custom Alertdialog Not Showing
I have a TextViewer Activity , that has a button, and when I click on it I want to popup an AlertDialog with list. I followed this link but it does not work (no popup). I believe t
Solution 1:
You haven't called the show()
method. Do this:
AlertDialog alert = builder.create();
alert.show();
Post a Comment for "Custom Alertdialog Not Showing"