判断是否处于飞行模式

//是否飞行模式
	static boolean isAirplaneModeOn(Context context) {
		  return Settings.System.getInt(context.getContentResolver(),
		  Settings.System.AIRPLANE_MODE_ON, 0) != 0;
	}
 

猜你喜欢

转载自dss16694.iteye.com/blog/1608719