android实现简单定时关机应用程序
2012-11-20 15:11:29 来源:WEB开发网核心提示:public class ShutdownBroadcastReceiver extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent) { if(intent.getAction().
public class ShutdownBroadcastReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)){
Intent newIntent = new Intent(context,ServiceActivity.class);
context.startService(newIntent);
}
}
}
大概差不多了,但是要将你的工程放到源码的package/app中,另外还得建一个Android.mk文件,然后就是编译了,生成的Shutdown.apk会在out/.../system/app下,可以拿来安装。
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)){
Intent newIntent = new Intent(context,ServiceActivity.class);
context.startService(newIntent);
}
}
}
大概差不多了,但是要将你的工程放到源码的package/app中,另外还得建一个Android.mk文件,然后就是编译了,生成的Shutdown.apk会在out/.../system/app下,可以拿来安装。
更多精彩
赞助商链接