摘要: package com.ss.fml;import java.util.Random;import java.util.Timer;import java.util.TimerTask;import android.app.Activity;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.os.Bundle;import android.os.Handler;import 阅读全文
posted @ 2012-08-15 16:52 vincy 阅读(342) 评论(0) 推荐(0)
摘要: 先上代码: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);这是在调用的地方,只需发送如上的广播。在androidmanifest.xml文件中在根标签manifest中添加权限android 阅读全文
posted @ 2012-08-15 11:01 vincy 阅读(224) 评论(0) 推荐(0)