WifiRttManager
open class WifiRttManager
kotlin.Any | |
↳ | android.net.wifi.rtt.WifiRttManager |
This class provides the primary API for measuring distance (range) to other devices using the IEEE 802.11mc Wi-Fi Round Trip Time (RTT) technology.
The devices which can be ranged include:
Ranging requests are triggered using startRanging(android.net.wifi.rtt.RangingRequest,java.util.concurrent.Executor,android.net.wifi.rtt.RangingResultCallback)
. Results (in case of successful operation) are returned in the RangingResultCallback#onRangingResults(List)
callback.
Wi-Fi RTT may not be usable at some points, e.g. when Wi-Fi is disabled. To validate that the functionality is available use the isAvailable()
function. To track changes in RTT usability register for the ACTION_WIFI_RTT_STATE_CHANGED
broadcast. Note that this broadcast is not sticky - you should register for it and then check the above API to avoid a race condition.
Summary
Constants | |
---|---|
static String |
Broadcast intent action to indicate that the state of Wi-Fi RTT availability has changed. |
static String |
Bundle key to access if getting the Location Configuration Information(LCI) from responder is supported. |
static String |
Bundle key to access if getting the Location Civic Report(LCR) from responder is supported. |
static String |
Bundle key to access if device supports to be a IEEE 802. |
static String |
Bundle key to access if one-sided Wi-Fi RTT is supported. |
static String |
Bundle key to access if device supports to be a responder in station mode |
Public methods | |
---|---|
open Bundle |
Returns a Bundle which represents the characteristics of the Wi-Fi RTT interface: a set of parameters which specify feature support. |
open Boolean |
Returns the current status of RTT API: whether or not RTT is available. |
open Unit |
startRanging(request: RangingRequest, executor: Executor, callback: RangingResultCallback) Initiate a request to range to a set of devices specified in the |
Constants
ACTION_WIFI_RTT_STATE_CHANGED
static val ACTION_WIFI_RTT_STATE_CHANGED: String
Broadcast intent action to indicate that the state of Wi-Fi RTT availability has changed. Use the isAvailable()
to query the current status. This broadcast is not sticky, use the isAvailable()
API after registering the broadcast to check the current state of Wi-Fi RTT.
Note: The broadcast is only delivered to registered receivers - no manifest registered components will be launched.
Value: "android.net.wifi.rtt.action.WIFI_RTT_STATE_CHANGED"
CHARACTERISTICS_KEY_BOOLEAN_LCI
static val CHARACTERISTICS_KEY_BOOLEAN_LCI: String
Bundle key to access if getting the Location Configuration Information(LCI) from responder is supported.
Value: "key_lci"
CHARACTERISTICS_KEY_BOOLEAN_LCR
static val CHARACTERISTICS_KEY_BOOLEAN_LCR: String
Bundle key to access if getting the Location Civic Report(LCR) from responder is supported.
Value: "key_lcr"
CHARACTERISTICS_KEY_BOOLEAN_NTB_INITIATOR
static val CHARACTERISTICS_KEY_BOOLEAN_NTB_INITIATOR: String
Bundle key to access if device supports to be a IEEE 802.11az non-trigger based initiator
Value: "key_ntb_initiator"
CHARACTERISTICS_KEY_BOOLEAN_ONE_SIDED_RTT
static val CHARACTERISTICS_KEY_BOOLEAN_ONE_SIDED_RTT: String
Bundle key to access if one-sided Wi-Fi RTT is supported. When it is not supported, only two-sided RTT can be performed, which requires responder supports IEEE 802.11mc and this can be determined by the method ScanResult#is80211mcResponder()
Value: "key_one_sided_rtt"
CHARACTERISTICS_KEY_BOOLEAN_STA_RESPONDER
static val CHARACTERISTICS_KEY_BOOLEAN_STA_RESPONDER: String
Bundle key to access if device supports to be a responder in station mode
Value: "key_sta_responder"
Public methods
getRttCharacteristics
open fun getRttCharacteristics(): Bundle
Returns a Bundle which represents the characteristics of the Wi-Fi RTT interface: a set of parameters which specify feature support. Each parameter can be accessed by the specified Bundle key, one of the CHARACTERISTICS_KEY_*
value.
May return an empty Bundle if the Wi-Fi RTT service is not initialized.
Requires android.Manifest.permission#ACCESS_WIFI_STATE
Return | |
---|---|
Bundle |
A Bundle specifying feature support of RTT. This value cannot be null . |
isAvailable
open fun isAvailable(): Boolean
Returns the current status of RTT API: whether or not RTT is available. To track changes in the state of RTT API register for the ACTION_WIFI_RTT_STATE_CHANGED
broadcast.
Note: availability of RTT does not mean that the app can use the API. The app's permissions and platform Location Mode are validated at run-time.
Return | |
---|---|
Boolean |
A boolean indicating whether the app can use the RTT API at this time (true) or not (false). |
startRanging
open fun startRanging(
request: RangingRequest,
executor: Executor,
callback: RangingResultCallback
): Unit
Initiate a request to range to a set of devices specified in the RangingRequest
. Results will be returned in the RangingResultCallback
set of callbacks.
Ranging request with only Wifi Aware peers can be performed with either android.Manifest.permission#NEARBY_WIFI_DEVICES
with android:usesPermissionFlags="neverForLocation", or android.Manifest.permission#ACCESS_FINE_LOCATION
. All other types of ranging requests require android.Manifest.permission#ACCESS_FINE_LOCATION
.
Requires android.Manifest.permission#ACCESS_FINE_LOCATION
and android.Manifest.permission#CHANGE_WIFI_STATE
and android.Manifest.permission#ACCESS_WIFI_STATE
and android.Manifest.permission#NEARBY_WIFI_DEVICES
Parameters | |
---|---|
request |
RangingRequest: A request specifying a set of devices whose distance measurements are requested. This value cannot be null . |
executor |
Executor: The Executor on which to run the callback. This value cannot be null . Callback and listener events are dispatched through this Executor , providing an easy way to control which thread is used. To dispatch events through the main thread of your application, you can use Context.getMainExecutor() . Otherwise, provide an Executor that dispatches to an appropriate thread. |
callback |
RangingResultCallback: A callback for the result of the ranging request. This value cannot be null . |