Skip to content

Instantly share code, notes, and snippets.

@takuya-i
Last active December 14, 2015 04:39
Show Gist options
  • Save takuya-i/5029901 to your computer and use it in GitHub Desktop.
Save takuya-i/5029901 to your computer and use it in GitHub Desktop.
Check airplane mode at android os
public satic boolean isAirPlaneMode() {
Settings.System.getInt(getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 0) == 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment