请添加如下飞行模式(飞行模式开关、飞行模式开关显示隐藏)接口:
飞行模式 | 飞行模式开关 | com.action.airplan | key: enable value:boolean true open the airplan false close the airplan | 关闭 | Intent intent = new Intent(); intent.setAction("com.action.airplan"); intent.putExtra("enable",true); context.sendBroadcast(intent); |
飞行模式 | 飞行模式开关显示隐藏 | com.action.airplan.show |