Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个非常直接的问题,我需要检测默认的记住密码弹出窗口何时在 Android Webview 上打开(所以我可以确保我没有用任何其他组件覆盖它,或者至少把它放在前面)
非常感谢,这个社区对我很有帮助。
您需要先使用以下代码清除记住的密码:
WebViewDatabase.getInstance(this).clearUsernamePassword();
之后将显示记住密码弹出窗口。