飞行模式

int val = 1; //0:关闭 1:开启
Settings.System.putInt(getContentResolver(),
Settings.System.AIRPLANE_MODE_ON, val);
Intent intent
= new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
intent.putExtra(
"state", true);
sendBroadcast(intent);

 

posted @ 2010-12-27 09:30  penink  阅读(235)  评论(0编辑  收藏  举报