Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android代碼重啟

android代碼重啟

編輯:關於Android編程

先上代碼:


[java]
Intent intent = new Intent(Intent.ACTION_REBOOT); 
intent.setAction(Intent.ACTION_REBOOT); 
intent.putExtra("nowait", 1); 
intent.putExtra("interval", 1); 
intent.putExtra("window", 0); 
sendBroadcast(intent); 

Intent intent = new Intent(Intent.ACTION_REBOOT);
intent.setAction(Intent.ACTION_REBOOT);
intent.putExtra("nowait", 1);
intent.putExtra("interval", 1);
intent.putExtra("window", 0);
sendBroadcast(intent);www.2cto.com
這是在調用的地方,只需發送如上的廣播。

在androidmanifest.xml文件中在根標簽manifest中添加權限


[java]
android:sharedUserId="android.uid.system" 

android:sharedUserId="android.uid.system"
添加上面的權限後,要源碼編譯。

Android.mk文件中要添加


[java]
LOCAL_CERTIFICATE := platform 

LOCAL_CERTIFICATE := platform
重啟代碼位於frameworks/base/core/jni/android_os_Power.cpp


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