Available Methods
- getConnectionInfo ( )
- isWifiEnabled ( )
- setWifiEnabled ( )
- saveConfiguration ( )
- WIFI_STATE_ENABLED
- WIFI_STATE_ENABLING
- getConfiguredNetworks ( )
- WIFI_STATE_DISABLED
- enableNetwork ( )
- createWifiLock ( )
- addNetwork ( )
- startScan ( )
- getScanResults ( )
- calculateSignalLevel ( )
- removeNetwork ( )
- getDhcpInfo ( )
- updateNetwork ( )
- WIFI_STATE_UNKNOWN
- WIFI_STATE_DISABLING
- getWifiState ( )
- reconnect ( )
- WifiLock ( )
- disconnect ( )
- disableNetwork ( )
- RSSI_CHANGED_ACTION
- WIFI_MODE_FULL
- NETWORK_STATE_CHANGED_ACTION
Related Classes
- android.os.Bundle
- android.content.Context
- android.view.View
- android.util.Log
- android.widget.TextView
- android.content.Intent
- android.app.Activity
- java.util.Locale
- java.lang.reflect.Method
- android.view.LayoutInflater
- android.os.Build
- android.widget.Toast
- android.os.Handler
- android.text.TextUtils
- android.content.pm.PackageManager
- java.util.Enumeration
- android.content.SharedPreferences
- android.support.annotation.NonNull
- java.net.InetAddress
- android.annotation.SuppressLint
- android.content.DialogInterface
- android.view.WindowManager
- org.json.JSONObject
- java.net.UnknownHostException
- android.content.BroadcastReceiver
Java Code Examples for android.net.wifi.WifiManager#RSSI_CHANGED_ACTION
The following examples show how to use
android.net.wifi.WifiManager#RSSI_CHANGED_ACTION .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NetworkEvents.java From NetworkEvents with Apache License 2.0 | 4 votes |
private void registerWifiSignalStrengthChangeReceiver() { IntentFilter filter = new IntentFilter(WifiManager.RSSI_CHANGED_ACTION); context.registerReceiver(wifiSignalStrengthChangeReceiver, filter); }