public class

WebViewDatabase

extends Object
java.lang.Object
   ↳ com.tencent.smtt.sdk.WebViewDatabase

Class Overview

This class allows developers to determine whether any WebView used in the application has stored any of the following types of browsing data and to clear any such stored data for all WebViews in the application.

  • Username/password pairs for web forms
  • HTTP authentication username/password pairs
  • Data entered into text fields (e.g. for autocomplete suggestions)

Summary

Public Methods
void clearFormData()
Clears any saved data for web forms.
void clearHttpAuthUsernamePassword()
Clears any saved credentials for HTTP authentication.
void clearUsernamePassword()
This method is deprecated. Saving passwords in WebView will not be supported in future versions.
static WebViewDatabase getInstance(Context context)
boolean hasFormData()
Gets whether there is any saved data for web forms.
boolean hasHttpAuthUsernamePassword()
Gets whether there are any saved credentials for HTTP authentication.
boolean hasUsernamePassword()
This method is deprecated. Saving passwords in WebView will not be supported in future versions.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public void clearFormData ()

Clears any saved data for web forms.

See Also

public void clearHttpAuthUsernamePassword ()

public void clearUsernamePassword ()

This method is deprecated.
Saving passwords in WebView will not be supported in future versions.

Clears any saved username/password pairs for web forms. Note that these are unrelated to HTTP authentication credentials.

public static WebViewDatabase getInstance (Context context)

public boolean hasFormData ()

Gets whether there is any saved data for web forms.

Returns
  • whether there is any saved data for web forms
See Also

public boolean hasHttpAuthUsernamePassword ()

Gets whether there are any saved credentials for HTTP authentication.

Returns
  • whether there are any saved credentials

public boolean hasUsernamePassword ()

This method is deprecated.
Saving passwords in WebView will not be supported in future versions.

Gets whether there are any saved username/password pairs for web forms. Note that these are unrelated to HTTP authentication credentials.

Returns
  • true if there are any saved username/password pairs