Android webview asks for chooser popup

124 Views Asked by At

I am trying to load the .pdf file in the webview, but it shows below popup

enter image description here

How to cancel this popup in Android webview. Please help

1

There are 1 best solutions below

0
Raluca On

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.