Stay organized with collections
Save and categorize content based on your preferences.
Callback
interface Callback
A callback interface used by the host application to set the Geolocation permission state for an origin.
Summary
Public methods |
abstract Unit |
Sets the Geolocation permission state for the supplied origin.
|
Public methods
invoke
abstract fun invoke(
origin: String!,
allow: Boolean,
retain: Boolean
): Unit
Sets the Geolocation permission state for the supplied origin.
Parameters |
origin |
String!: the origin for which permissions are set |
allow |
Boolean: whether or not the origin should be allowed to use the Geolocation API |
retain |
Boolean: whether the permission should be retained beyond the lifetime of a page currently being displayed by a WebView |
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# GeolocationPermissions.Callback\n\nAdded in [API level 5](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nCallback\n========\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/webkit/GeolocationPermissions.Callback \"View this page in Java\") \n\n```\ninterface Callback\n```\n\n|-----------------------------------------------------|\n| [android.webkit.GeolocationPermissions.Callback](#) |\n\nA callback interface used by the host application to set the Geolocation permission state for an origin.\n\nSummary\n-------\n\n| Public methods ||\n|---------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| abstract [Unit](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) | [invoke](#invoke(kotlin.String,%20kotlin.Boolean,%20kotlin.Boolean))`(`origin:` `[String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!`, `allow:` `[Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`, `retain:` `[Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html)`)` Sets the Geolocation permission state for the supplied origin. |\n\nPublic methods\n--------------\n\n### invoke\n\nAdded in [API level 5](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun invoke(\n origin: String!, \n allow: Boolean, \n retain: Boolean\n): Unit\n```\n\nSets the Geolocation permission state for the supplied origin.\n\n| Parameters ||\n|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `origin` | [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html)!: the origin for which permissions are set |\n| `allow` | [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html): whether or not the origin should be allowed to use the Geolocation API |\n| `retain` | [Boolean](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html): whether the permission should be retained beyond the lifetime of a page currently being displayed by a WebView |"]]