我有一项服务,我想从中启动其他服务。我怎样才能做到这一点?这是来自 developer.android.com,它给了我一个 NullPointerException。还有其他方法可以做到这一点吗?
Intent intent = new Intent(this, HelloService.class);
startService(intent);
我发现只能从这样的服务开始活动:
Intent i = new Intent();
i.setClass(this, MyActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
也许我需要使用此代码并以某种方式标记服务?