I have code in my application that detects if Wi-Fi is actively connected. That code triggers a RuntimeException if airplane mode is enabled. I would like to display a separate error message when in this mode anyway. How can I reliably detect if an Android device is in airplane mode?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||
|
|
And if you don't want to poll if the Airplane Mode is active or not, you can register a BroadcastReceiver for the SERVICE_STATE Intent and react on it. Either in your ApplicationManifest:
or programmatically:
And as described in the other solutions, you can poll the airplane mode when your receiver was notified and throw your exception. |
|||||||||||||||||||
|
|
From here :
|
|||
|
|
|
You could check if the internet is on
} |
|||
|