I am trying to load the .pdf file in the webview, but it shows below popup
How to cancel this popup in Android webview. Please help
I am trying to load the .pdf file in the webview, but it shows below popup
How to cancel this popup in Android webview. Please help
Have you tried the ACTION_CLOSE_SYSTEM_DIALOGS?
This is broadcast when a user action should request a temporary system dialog to dismiss. Some examples of temporary system dialogs are the notification window-shade and the recent tasks dialog.
Example of using:
Intent it = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
context.sendBroadcast(it);
I'm not sure if it works for that dialog.