GeolocationPermissions
  public
  
  
  
  class
  GeolocationPermissions
  
    extends Object
  
  
  
  
  
  
| java.lang.Object | |
| ↳ | android.webkit.GeolocationPermissions | 
This class is used to manage permissions for the WebView's Geolocation
 JavaScript API.
 Geolocation permissions are applied to an origin, which consists of the
 host, scheme and port of a URI. In order for web content to use the
 Geolocation API, permission must be granted for that content's origin.
 This class stores Geolocation permissions. An origin's permission state can
 be either allowed or denied. This class uses Strings to represent
 an origin.
 When an origin attempts to use the Geolocation API, but no permission state
 is currently set for that origin,
 WebChromeClient.onGeolocationPermissionsShowPrompt()
 is called. This allows the permission state to be set for that origin.
 The methods of this class can be used to modify and interrogate the stored
 Geolocation permissions at any time.
Summary
| Nested classes | |
|---|---|
| 
        
        
        
        
        interface | GeolocationPermissions.CallbackA callback interface used by the host application to set the Geolocation permission state for an origin. | 
| Public methods | |
|---|---|
| 
        
        
        
        
        
        void | 
      allow(String origin)
      Allows the specified origin to use the Geolocation API. | 
| 
        
        
        
        
        
        void | 
      clear(String origin)
      Clears the Geolocation permission state for the specified origin. | 
| 
        
        
        
        
        
        void | 
      clearAll()
      Clears the Geolocation permission state for all origins. | 
| 
        
        
        
        
        
        void | 
      getAllowed(String origin, ValueCallback<Boolean> callback)
      Gets the Geolocation permission state for the specified origin. | 
| 
        
        
        static
        
        
        GeolocationPermissions | 
      getInstance()
      Gets the singleton instance of this class. | 
| 
        
        
        
        
        
        void | 
      getOrigins(ValueCallback<Set<String>> callback)
      Gets the set of origins for which Geolocation permissions are stored. | 
| Inherited methods | |
|---|---|
Public methods
allow
public void allow (String origin)
Allows the specified origin to use the Geolocation API.
| Parameters | |
|---|---|
| origin | String: the origin for which Geolocation API use is allowed | 
clear
public void clear (String origin)
Clears the Geolocation permission state for the specified origin.
| Parameters | |
|---|---|
| origin | String: the origin for which Geolocation permissions are cleared | 
clearAll
public void clearAll ()
Clears the Geolocation permission state for all origins.
getAllowed
public void getAllowed (String origin, ValueCallback<Boolean> callback)
Gets the Geolocation permission state for the specified origin.
| Parameters | |
|---|---|
| origin | String: the origin for which Geolocation permission is requested | 
| callback | ValueCallback: aValueCallbackto receive the result of this
                 request. This object'sonReceiveValue()method will be invoked asynchronously with a boolean
                 indicating whether or not the origin can use the
                 Geolocation API. | 
getInstance
public static GeolocationPermissions getInstance ()
Gets the singleton instance of this class. This method cannot be
 called before the application instantiates a WebView instance.
| Returns | |
|---|---|
| GeolocationPermissions | the singleton GeolocationPermissionsinstance | 
getOrigins
public void getOrigins (ValueCallback<Set<String>> callback)
Gets the set of origins for which Geolocation permissions are stored.
| Parameters | |
|---|---|
| callback | ValueCallback: aValueCallbackto receive the result of this
                 request. This object'sonReceiveValue()method will be invoked asynchronously with a set of
                 Strings containing the origins for which Geolocation
                 permissions are stored. | 
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
