Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remember password popup on Android webview problem

this is is a pretty straight forward question, I need to detect when the default Remember password popup opens on the Android Webview (So I can make sure I am not covering it with any other component, or at least bring it to the front)

Thanks a lot, this community has been very helpful for me.

like image 561
paulonogueira Avatar asked Nov 15 '22 06:11

paulonogueira


1 Answers

You need to clear remembered password first with this code:

WebViewDatabase.getInstance(this).clearUsernamePassword();

After that remember password popup will displayed.

like image 51
Akirayjin Avatar answered Jan 03 '23 08:01

Akirayjin