Saturday, September 17, 2011

Check Airplane Mode

Below function checks weather your device is in Airplane Mode or Not
*******************************************************************

public boolean isAirplaneMode(Context context)
{
int settingValue;
try
{
settingValue = Settings.System.getInt(context.getContentResolver(), Settings.System.AIRPLANE_MODE_ON);
return settingValue != 0;
} catch (SettingNotFoundException e)
{
return false;
}
}

1 comment:

  1. I’m usually looking about the internet for content articles that can help me.
    Thank you. It is extremely helpful for me.
    would you mind updating your blog with more information?
    source: www.wbupdates.com

    ReplyDelete