当前位置:   article > 正文

[Android初级]BroadReceiver之自启动应用_bootbroadcastreceiver

bootbroadcastreceiver

在如今应用app的使用中,几乎每个应用都有自动启动的功能,实现原理就是通过监听android的启动广播,对其运行相应的服务(activity或者service)。

如下是对系统启动后,简单的启动一个网页的代码。


1.定义BootBroadcastReceiver类:

  1. public class BootBroadcastReceiver extends BroadcastReceiver {
  2. static final String BOOT_ACTION = "android.intent.action.BOOT_COMPLETED";
  3. @Override
  4. public void onReceive(Context context, Intent intent) {
  5. if(intent.getAction().equals(BOOT_ACTION)){
  6. Log.i("info", "收到系统启动广播");
  7. Intent bootIntent = new Intent();
  8. intent.setClass(context, BootStartDemo.class);
  9. bootIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  10. context.startActivity(bootIntent);
  11. }
  12. }
  13. }

2.在AndroidManifest.xml注册这个类:

  1. <receiver android:name=".BootBroadcastReceiver" >
  2. <intent-filter>
  3. <action android:name="android.intent.action.BOOT_COMPLETED" />
  4. <category android:name="android.intent.category.HOME" />
  5. </intent-filter>
  6. </receiver>

3.测试你的类吧:

  1. public class BootStartDemo extends Activity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_boot_start_demo);
  6. Uri uri = Uri.parse("http://wap.baidu.com/s?word=" + "apple");
  7. Intent intent = new Intent(Intent.ACTION_VIEW, uri);
  8. intent.addCategory(Intent.CATEGORY_DEFAULT);
  9. startActivity(intent);
  10. }
  11. }


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/308495
推荐阅读
相关标签
  

闽ICP备14008679号