to top
Android APIs
public class

WebViewDatabase

extends Object
java.lang.Object
   ↳ android.webkit.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 was deprecated in API level 18. 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 was deprecated in API level 18. Saving passwords in WebView will not be supported in future versions.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public void clearFormData ()

Added in API level 1

Clears any saved data for web forms.

See Also

public void clearHttpAuthUsernamePassword ()

Added in API level 1

public void clearUsernamePassword ()

Added in API level 1

This method was deprecated in API level 18.
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)

Added in API level 1

public boolean hasFormData ()

Added in API level 1

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 ()

Added in API level 1

Gets whether there are any saved credentials for HTTP authentication.

Returns
  • whether there are any saved credentials

public boolean hasUsernamePassword ()

Added in API level 1

This method was deprecated in API level 18.
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