首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android代码兑现关机重启

2012-09-27 
Android代码实现关机重启关机:Intent shutdown new Intent(Intent.ACTION_REQUEST_SHUTDOWN)shutdown.p

Android代码实现关机重启
关机:

Intent shutdown = new Intent(Intent.ACTION_REQUEST_SHUTDOWN);  shutdown.putExtra(Intent.EXTRA_KEY_CONFIRM, false);  shutdown.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  mContext.startActivity(shutdown);

重启:
Intent reboot = new Intent(Intent.ACTION_REBOOT);reboot.putExtra("nowait", 1);reboot.putExtra("interval", 1);reboot.putExtra("window", 0);sendBroadcast(reboot);

加上
<manifest xmlns:android="http://schemas.android.com/apk/res/android"    android:versionCode="1"    [color=red]android:sharedUserId="android.uid.system"[/color]    android:versionName="1.0">
1 楼 pop1030123 2011-09-18   LZ,有没有发现Intent.EXTRA_KEY_CONFIRM这个常量根本没有。 2 楼 kallyena 2011-11-05   没找到Intent.EXTRA_KEY_CONFIRM这个常量

热点排行
Bad Request.