3) Now create an alert dialog using above xml layout
/** * This method shows alert dialog to prompt user to enable phone permissions. * * @param title the title * @param message the message */ public static void showPermissionAlertDialog(final String title, String message, final Activity context) { try { final Dialog dialog = new Dialog(context); dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
No comments:
Post a Comment