如何在引导完整的Andr​​oid推出的服务? [英] How to launch service on boot complete android?

查看:166
本文介绍了如何在引导完整的Andr​​oid推出的服务?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我读过关于发射服务的一些教程引导。 我所做的是:

I've read some tutorial on launch service on boot. What I've done is:

在清单:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" >
</uses-permission>

<receiver android:name="my.package.ServiceStartup" >
   <intent-filter>
       <action android:name="android.intent.action.BOOT_COMPLETED" />
   </intent-filter>
</receiver>

code:

CODE:

public class ServiceStartup extends BroadcastReceiver {

    public void onReceive(Context context, Intent intent) {
        Handler h = new Handler();
        h.postDelayed(new Runnable() {
           @Override
           public void run() {
               Intent dialogIntent = new Intent(getBaseContext(), MyActivity.class);
               dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
               getApplication().startActivity(dialogIntent);
           }
        }, 10000);
    }
}

在这种方式,如果我重新启动我的设备,并转到活动的应用程序设置,我的服务没有启动。我能做什么?当我做出错误?谢谢!

In this way, if i reboot my device and go to setting in active applications, my service is not launched. What can I do? Where I make error? thanks!!

推荐答案

您想启动的活动或服务。在情况下的服务,你将不得不调用 startService()。像:

You want to start activity or service. In case of service, you will have to call startService(). Like:

getApplication()startService(新意图(这一点,MyService.class));

这篇关于如何在引导完整的Andr​​oid推出的服务?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆