How do I detect fail to connect wifi in android?

user3752013

What is the best way to detect connection failure?

I know that we should use NetworkInfo.getState() to get connection state, and also I use BroadcastReceiver with NETWORK_STATE_CHANGED_ACTION to detecting connection state changes.

I think that detecting DISCONNECTED state in a broadcastReceiver is not match in this case.

NetworkInfo.State.DISCONNECTED means only "disconnected", does not means connection fail.

Anoop M

Register the Receiver with WifiManager.SUPPLICANT_STATE_CHANGED_ACTION to be notified when a connection failure occurs. It might be due to supplying invalid credentials for connecting to Wi-Fi.

private void registerReceiver() {
        IntentFilter filter = new IntentFilter();
        filter.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
        filter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION);
        registerReceiver(mReceiver, filter);
    }

And your Receiver below

 private BroadcastReceiver mReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
        NetworkInfo info = intent.getParcelableExtra(WifiManager.EXTRA_NETWORK_INFO);
            if (info != null) {
                if (info.isConnected()) {
                    //connected
                    WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
                    WifiInfo wifiInfo = wifiManager.getConnectionInfo();
                    String ssid = wifiInfo.getSSID();
                }
            }  else {
                if (intent.getAction().equals(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION)) {
                    if (intent.hasExtra(WifiManager.EXTRA_SUPPLICANT_ERROR)) {
                      //failed to connect
                }
            }
        }
    };

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How do I connect my ipad to my wifi

分類Dev

How do I detect if an actionSheet was dismissed?

分類Dev

How do I detect the character encoding of a text

分類Dev

How do i detect when android device screen is about to timeout or "Lock"?

分類Dev

How do I connect fileInput to ggplot in Shiny?

分類Dev

How do i fail my testcase with testNG assertion?

分類Dev

How do I update my Ubuntu? Archive manager fail

分類Dev

How do I detect requests initiated by the new fetch standard? How should I detect an AJAX request in general?

分類Dev

How to detect if iOS Wifi hardware is ON swift 3

分類Dev

How do I detect total loss of precision with Doubles?

分類Dev

How do I detect, with JavaScript, if an image was pasted or dropped into a contenteditable area?

分類Dev

how do I detect if window.location failed?

分類Dev

How do I detect updates with a manually deployed ClickOnce using mage?

分類Dev

How do I detect any uppercase letter in an Excel cell?

分類Dev

How do I detect overlapping almost circular objects in MATLAB?

分類Dev

How do I detect if someone is stealing my broadband bandwidth?

分類Dev

How do I detect contiguous sublists with values above a certain threshold?

分類Dev

How to connect to WiFi from the command line?

分類Dev

How do I view crash from iTunes Connect in Xcode?

分類Dev

How do I connect to the Apple News API from c#?

分類Dev

How do I connect VLC to a known DLNA server?

分類Dev

How do I fix Debian that refuses to connect to the internet in VirtualBox?

分類Dev

How do I connect to a Netcool / Omnibus "Object Server" using Python?

分類Dev

How do I conditionally connect one gui to another?

分類Dev

I can only connect internet to employers wifi. Apart from it, I am able to connect to wifi, but I am not getting internet

分類Dev

How do I use dotnet test to run tests from multiple libraries with a single pass/fail summary

分類Dev

How to detect the presence of mobile devices in an area using WiFi router

分類Dev

Can I automatically connect to the strongest wifi network under Windows 7?

分類Dev

How do I detect taps on a UITableView outside of UITableViewCells - i.e. in the section heading?

Related 関連記事

  1. 1

    How do I connect my ipad to my wifi

  2. 2

    How do I detect if an actionSheet was dismissed?

  3. 3

    How do I detect the character encoding of a text

  4. 4

    How do i detect when android device screen is about to timeout or "Lock"?

  5. 5

    How do I connect fileInput to ggplot in Shiny?

  6. 6

    How do i fail my testcase with testNG assertion?

  7. 7

    How do I update my Ubuntu? Archive manager fail

  8. 8

    How do I detect requests initiated by the new fetch standard? How should I detect an AJAX request in general?

  9. 9

    How to detect if iOS Wifi hardware is ON swift 3

  10. 10

    How do I detect total loss of precision with Doubles?

  11. 11

    How do I detect, with JavaScript, if an image was pasted or dropped into a contenteditable area?

  12. 12

    how do I detect if window.location failed?

  13. 13

    How do I detect updates with a manually deployed ClickOnce using mage?

  14. 14

    How do I detect any uppercase letter in an Excel cell?

  15. 15

    How do I detect overlapping almost circular objects in MATLAB?

  16. 16

    How do I detect if someone is stealing my broadband bandwidth?

  17. 17

    How do I detect contiguous sublists with values above a certain threshold?

  18. 18

    How to connect to WiFi from the command line?

  19. 19

    How do I view crash from iTunes Connect in Xcode?

  20. 20

    How do I connect to the Apple News API from c#?

  21. 21

    How do I connect VLC to a known DLNA server?

  22. 22

    How do I fix Debian that refuses to connect to the internet in VirtualBox?

  23. 23

    How do I connect to a Netcool / Omnibus "Object Server" using Python?

  24. 24

    How do I conditionally connect one gui to another?

  25. 25

    I can only connect internet to employers wifi. Apart from it, I am able to connect to wifi, but I am not getting internet

  26. 26

    How do I use dotnet test to run tests from multiple libraries with a single pass/fail summary

  27. 27

    How to detect the presence of mobile devices in an area using WiFi router

  28. 28

    Can I automatically connect to the strongest wifi network under Windows 7?

  29. 29

    How do I detect taps on a UITableView outside of UITableViewCells - i.e. in the section heading?

ホットタグ

アーカイブ