1.在AndroidManifest.xml文件的manifest標籤中加入一條android:sharedUserId="android.uid.system" java
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.ipanel.update" android:versionCode="1" android:versionName="1.0" android:sharedUserId="android.uid.system" > <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="15" /> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/title_activity_main" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
2.在MainActivity中,有如下2種方式實現: linux
/*Intent reboot = new Intent(Intent.ACTION_REBOOT); reboot.putExtra("nowait", 1); reboot.putExtra("interval", 1); reboot.putExtra("window", 0); sendBroadcast(reboot); */ PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE); pManager.reboot("");
整個代碼: android
package com.demo.reboot; import java.io.File; import java.io.IOException; import java.io.InputStream; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.os.PowerManager; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button rebootBtn = (Button) findViewById(R.id.button2); rebootBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { new AlertDialog.Builder(MainActivity.this) .setTitle("提示") .setMessage("確認重啓麼?") .setPositiveButton("重啓", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // 重啓 /*String str = "重啓"; try { str = runCmd("reboot", "/system/bin"); } catch (IOException e) { e.printStackTrace(); }*/ /*Intent reboot = new Intent(Intent.ACTION_REBOOT); reboot.putExtra("nowait", 1); reboot.putExtra("interval", 1); reboot.putExtra("window", 0); sendBroadcast(reboot); */ PowerManager pManager=(PowerManager) getSystemService(Context.POWER_SERVICE); pManager.reboot("重啓"); System.out.println("execute cmd--> reboot\n" + "重啓"); } }) .setNegativeButton("取消", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // 取消當前對話框 dialog.cancel(); } }).show(); } }); } }
簽名方法: app
1>添加權限 工具
在AndroidManifest.xml文件下添加android:sharedUserId="android.uid.system" 。 oop
2>在Eclipse中導出無簽名的應用文件 ui
在工程中:右鍵->Android Tools -> Export Unsigned Application Package導出應用 this
3>找出系統簽名密鑰 spa
系統密鑰爲: platform.pk8和platform.x509.pem
路徑: build\target\product\security
4>找出系統簽名工具
工具爲:signApk.jar
路徑:/out/host/linux-x86/framework/ signApk.jar
5>開始簽名
將第二、三、4步找到的無簽名應用、platform.pk八、platform.x509.pem和signApk.jar放到同一文件夾下如F:\sign。
打開 dos 操做界面,定們到F:\sign,輸入命令:
java -jar signapk.jar platform.x509.pem platform.pk8 **.apk ***.apk
(**.apk 爲未簽名應用 ***.apk 爲簽名以後應用)
注:以前在評論裏有錯誤的說過這個簽名工具是通用的,這裏糾正下。編譯導出的apk,要安裝到那個版本的系統,就去那源碼裏找對應的簽名工具,並非各個版本通用