Android activity/service 开机后自动运行实现
2010-02-28 23:14:00 来源:WEB开发网看了网上的几个例子,也做了一个系统启动后直接运行activity的小程序
代码贴在下面:
首先是从BroadcastReceiver派生出一个新类,用来监听系统启动后发出的广播消息android.intent.action.BOOT_COMPLETED。
BootReceiver.java:
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class BootReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals("android.intent.action.BOOT_COMPLETED"))
{
Log.d("BootReceiver", "system boot completed");
Intent newIntent = new Intent(context, FirstRun.class);
newIntent.setAction("android.intent.action.MAIN"); //MyActivity action defined in AndroidManifest.xml
newIntent.addCategory("android.intent.category.LAUNCHER");//MyActivity category defined in AndroidManifest.xml
newIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //If activity is not launched in Activity environment, this flag is mandatory to set
context.startActivity(newIntent);
//if you want to start a service, follow below method:
/*******************************************************
Intent service = new Intent(yourService.ACTION_START);
service.setClass(context, yourService.class);
context.startService(service);
******************************************************/
}
}
}
接下来这个类就是监听到系统启动完毕后,我们要运行的activity.
FirstRun.java
import android.app.Activity;
import android.os.Bundle;
public class FirstRun extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接