Alertdialog In Fragments
I have some difficulties getting AlertDialog working in fragments. I have six buttons and when each button is clicked AlertDialog box should display its content. even though the pr
Solution 1:
You are creating dialog, but not really showing it. Call dialog.show()
.
Post a Comment for "Alertdialog In Fragments"