Modal Dialog Functionality Using AlertDialog
I want to keep AlertDialog focused until a user presses any of the buttons on it. In other words, even if a user presses any other area (like it's parent area) or presses back butt
Solution 1:
use setCancelable(false);
It will stop removing your AlertDialog
from your screen.
Post a Comment for "Modal Dialog Functionality Using AlertDialog"