Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實現關機重啟的方法

Android實現關機重啟的方法

編輯:關於Android編程

實現系統重啟的APK需要system的權限,在AndroidManifest.xml中增加android:sharedUserId="android.uid.system",再修改簽名即可;

具體方法參考:

點擊打開鏈接

1、使用PowerManager來實現:

代碼:
	private void rebootSystem(){
		PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE);
		pManager.reboot("");
	}

2、發送REBOOT廣播:

代碼:
	private void rebootSystem(){
		Intent reboot = new Intent(Intent.ACTION_REBOOT);
		reboot.putExtra("nowait", 1);
		reboot.putExtra("interval", 1);
		reboot.putExtra("window", 0);
		sendBroadcast(reboot);
	}


  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved