如何在引导完整的Andr​​oid推出的服务?完整、如何在、oid、Andr

由网友(╮爱,有何必多问つ)分享简介:我读过关于发射服务的一些教程引导。我所做的是:I've read some tutorial on launch service on boot.What I've done is:在清单:我读过关于发射服务的一些教程引导。 我所做的是:

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));

阅读全文

相关推荐

最新文章