Android: save login and password for WebView (e.g. Google Chrome)

I tried using different settings for WebViww for example:

 checkoutWV.getSettings().setDomStorageEnabled(true); checkoutWV.getSettings().setSaveFormData(true); checkoutWV.getSettings().setSavePassword(true); checkoutWV.getSettings().setAllowContentAccess(true); checkoutWV.getSettings().setAllowFileAccess(true); checkoutWV.getSettings().setSupportZoom(true); checkoutWV.setClickable(true); checkoutWV.setWebChromeClient(new WebChromeClient()); 

But nothing works.

Is it possible to use the standard Google Chrome function in WebView and how - to cause a pop-up window to save the password?

+7
android google-chrome webview
source share

No one has answered this question yet.

See related questions:

2510
How to keep Android activity state by saving instance state?
1207
Strange memory issue when loading image into Bitmap object
1002
Grid motion detection
572
ViewPager PagerAdapter does not update View
215
Android Calling JavaScript functions in WebView
206
How to make Google Chrome JavaScript console stable?
192
How to set breakpoints in embedded Javascript in Google Chrome?
156
Google Chrome Tree Caching Error Using UI Automation
2
Saving password in webview
one
Password remember proxy login in Google Chrome

All Articles