先看一张图片:

那么要加重启项要怎么做呢?


首先在源码中找到按电源弹出的选项的源文件,也就是freamwork/base/policy/src/com/android/internal/policy/impl/GlobalActions.java


在其中找到private AlertDialog createDialog() 方法,里面有一个mItems的添加选项,在里面加入

//add by xxnan 2012-9-13
new SinglePressAction(
com.android.internal.R.drawable.ic_lock_power_off,
R.string.global_action_reboot) {

public void onPress() {
// reboot
ShutdownThread.reboot(mContext,null,false);
}

public boolean showDuringKeyguard() {
return true; freamwork/base/policy/src/com
}

public boolean showBeforeProvisioning() {
return true;
}
//add by xxnan 2012-9-13

代码即可,添加重启选项,但是R.string.global_action_reboot必须在资源文件下添加,再编译资源文件。。。

在 framework/base/core/res/res/values/string.xml下添加

<string name="global_action_reboot">reboot</string>
<string name="reboot_progress">rebooting...</string>

在 framework/base/core/res/res/values-zh-rCN/string.xml下添加

<string name="global_action_reboot">重启</string>
<string name="reboot_progress">重启...</string>

然后找到freamwork/base/policy/src/com/android/internal/app/Shutdown.java的private static void beginShutdownSequence(Context context)


方法,将pd.setTitle(context.getText(com.android.internal.R.string.power_off));


pd.setMessage(context.getText(com.android.internal.R.string.shutdown_progress));

改为if(mReboot){ // reboot progress


pd.setTitle(context.getText(com.android.internal.R.string.global_action_reboot));


pd.setMessage(context.getText(com.android.internal.R.string.reboot_progress));
}
else
{
pd.setTitle(context.getText(com.android.internal.R.string.power_off));


pd.setMessage(context.getText(com.android.internal.R.string.shutdown_progress));
}

然后就是编译了,先编译源码下的framework/base/core/res

再编译base,最后编译policy(按顺序,不然会报错)

最后将编译好的out下的system/framework/framework.jar和framework-res.apk和android.policy.jar替换你机器里system/framework的三个文件,重启,ok完成了,感兴趣的人

赶紧试一下吧。。。。(好像android硬件不支持重启,所以只能关机之后并不能重启)。


更多相关文章

  1. Android(安卓)Makefile中是 如何识别 TARGET_PRODUCT 的
  2. Android(安卓)自己动手写ListView学习其原理 1 显示第一屏Item
  3. Android: NDK编程入门笔记
  4. Android如何反编译与再编译
  5. Android的源代码结构
  6. Android(安卓)4.2.2原生Launcher修改使之可以运行过程小结
  7. Android(安卓)java.io.FileNotFoundException: open failed: EAC
  8. android反编译apk文件
  9. Android配置build.gradle自动化编译signingConfigs和V1,V2签名

随机推荐

  1. Android(安卓)8.0 - 基于命名空间的动态
  2. Android(安卓)点击事件的写法
  3. android 之LinearLayout布局
  4. Android中关于Audio的一些官方文章
  5. Android代码总结,Sdcard和图片相关
  6. android中TextView分段显示不同颜色,字体,
  7. vs 编译android so
  8. Android 常用的控件
  9. android 使用DOM解析xml
  10. android中getX(),getY() 与getRawX(),get