Improve Wi-Fi hand-off am: b9f329f633
Original change: undetermined Change-Id: I856a3f9e0e79d15cb9d832b910de2439ff996741
This commit is contained in:
@@ -77,7 +77,9 @@ public class NetworkInfo implements Parcelable {
|
|||||||
/** Attempt to connect failed. */
|
/** Attempt to connect failed. */
|
||||||
FAILED,
|
FAILED,
|
||||||
/** Access to this network is blocked. */
|
/** Access to this network is blocked. */
|
||||||
BLOCKED
|
BLOCKED,
|
||||||
|
/** Link has poor connectivity. */
|
||||||
|
VERIFYING_POOR_LINK
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -94,6 +96,7 @@ public class NetworkInfo implements Parcelable {
|
|||||||
stateMap.put(DetailedState.CONNECTING, State.CONNECTING);
|
stateMap.put(DetailedState.CONNECTING, State.CONNECTING);
|
||||||
stateMap.put(DetailedState.AUTHENTICATING, State.CONNECTING);
|
stateMap.put(DetailedState.AUTHENTICATING, State.CONNECTING);
|
||||||
stateMap.put(DetailedState.OBTAINING_IPADDR, State.CONNECTING);
|
stateMap.put(DetailedState.OBTAINING_IPADDR, State.CONNECTING);
|
||||||
|
stateMap.put(DetailedState.VERIFYING_POOR_LINK, State.CONNECTING);
|
||||||
stateMap.put(DetailedState.CONNECTED, State.CONNECTED);
|
stateMap.put(DetailedState.CONNECTED, State.CONNECTED);
|
||||||
stateMap.put(DetailedState.SUSPENDED, State.SUSPENDED);
|
stateMap.put(DetailedState.SUSPENDED, State.SUSPENDED);
|
||||||
stateMap.put(DetailedState.DISCONNECTING, State.DISCONNECTING);
|
stateMap.put(DetailedState.DISCONNECTING, State.DISCONNECTING);
|
||||||
|
|||||||
Reference in New Issue
Block a user