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;
}
}
I’m usually looking about the internet for content articles that can help me.
ReplyDeleteThank you. It is extremely helpful for me.
would you mind updating your blog with more information?
source: www.wbupdates.com