zoukankan      html  css  js  c++  java
  • android wifi state and wifi ap state

    /**
    * Wi-Fi is currently being disabled. The state will change to {@link #WIFI_STATE_DISABLED} if
    * it finishes successfully.
    *
    * @see #WIFI_STATE_CHANGED_ACTION
    * @see #getWifiState()
    */
    public static final int WIFI_STATE_DISABLING = 0;
    /**
    * Wi-Fi is disabled.
    *
    * @see #WIFI_STATE_CHANGED_ACTION
    * @see #getWifiState()
    */
    public static final int WIFI_STATE_DISABLED = 1;
    /**
    * Wi-Fi is currently being enabled. The state will change to {@link #WIFI_STATE_ENABLED} if
    * it finishes successfully.
    *
    * @see #WIFI_STATE_CHANGED_ACTION
    * @see #getWifiState()
    */
    public static final int WIFI_STATE_ENABLING = 2;
    /**
    * Wi-Fi is enabled.
    *
    * @see #WIFI_STATE_CHANGED_ACTION
    * @see #getWifiState()
    */
    public static final int WIFI_STATE_ENABLED = 3;
    /**
    * Wi-Fi is in an unknown state. This state will occur when an error happens while enabling
    * or disabling.
    *
    * @see #WIFI_STATE_CHANGED_ACTION
    * @see #getWifiState()
    */
    public static final int WIFI_STATE_UNKNOWN = 4;

    /**
    * Wi-Fi AP is currently being disabled. The state will change to
    * {@link #WIFI_AP_STATE_DISABLED} if it finishes successfully.
    *
    * @see #WIFI_AP_STATE_CHANGED_ACTION
    * @see #getWifiApState()
    *
    * @hide
    */
    public static final int WIFI_AP_STATE_DISABLING = 10;
    /**
    * Wi-Fi AP is disabled.
    *
    * @see #WIFI_AP_STATE_CHANGED_ACTION
    * @see #getWifiState()
    *
    * @hide
    */
    public static final int WIFI_AP_STATE_DISABLED = 11;
    /**
    * Wi-Fi AP is currently being enabled. The state will change to
    * {@link #WIFI_AP_STATE_ENABLED} if it finishes successfully.
    *
    * @see #WIFI_AP_STATE_CHANGED_ACTION
    * @see #getWifiApState()
    *
    * @hide
    */
    public static final int WIFI_AP_STATE_ENABLING = 12;
    /**
    * Wi-Fi AP is enabled.
    *
    * @see #WIFI_AP_STATE_CHANGED_ACTION
    * @see #getWifiApState()
    *
    * @hide
    */
    public static final int WIFI_AP_STATE_ENABLED = 13;
    /**
    * Wi-Fi AP is in a failed state. This state will occur when an error occurs during
    * enabling or disabling
    *
    * @see #WIFI_AP_STATE_CHANGED_ACTION
    * @see #getWifiApState()
    *
    * @hide
    */
    public static final int WIFI_AP_STATE_FAILED = 14;

  • 相关阅读:
    按键精灵-3-按键精灵键盘鼠标命令
    Python-13-pass,del和exec
    STP-9-处理RSTP中的拓扑变化
    Python-12-简单推导
    Python-11-循环
    Python-10-条件和条件语句
    Qt qml listview 列表视图控件(下拉刷新、上拉分页、滚动轴)
    Qt qml pageview 左右滑动分页组件
    Qt qml treeview 树控件
    Qt qml 模拟iphone slide to unlock 的聚光动画文字效果
  • 原文地址:https://www.cnblogs.com/zooc/p/4282060.html
Copyright © 2011-2022 走看看