机器人:
public class LocationService extends Service {
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
startActivity(new Intent(this, activity.class));
}
}
我是从Activity
如果条件满足开始,则Activity
startService(new Intent(WozzonActivity.this, LocationService.class));
上面提到的LocationService
无法启动Activity
,如何在服务类中获取当前正在运行的Activity
的上下文?
答案 0 :(得分:312)
从Service类内部:
Intent dialogIntent = new Intent(this, MyActivity.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(dialogIntent);
答案 1 :(得分:17)
我遇到了同样的问题,并且想让你知道以上都不适用于我。 对我有用的是:
Intent dialogIntent = new Intent(this, myActivity.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(dialogIntent);
在我的子类中,存储在一个单独的文件中,我不得不:
public static Service myService;
myService = this;
new SubService(myService);
Intent dialogIntent = new Intent(myService, myActivity.class);
dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
myService.startActivity(dialogIntent);
所有其他答案都给了我一个nullpointerexception
。
答案 2 :(得分:8)
另一件值得一提的事情是:虽然上面的答案在我们的任务处于后台时工作得很好,但是如果我们的任务(由服务+某些活动构成)在前台(即其中一个),我可以使其工作的唯一方法我们对用户可见的活动是这样的:
Intent intent = new Intent(storedActivity, MyActivity.class);
intent.setAction(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
storedActivity.startActivity(intent);
我不知道ACTION_VIEW或FLAG_ACTIVITY_NEW_TASK在这里是否有任何实际用途。成功的关键是
storedActivity.startActivity(intent);
当然还有FLAG_ACTIVITY_REORDER_TO_FRONT用于不再次实例化活动。祝你好运!
答案 3 :(得分:4)
更新ANDROID 10及更高版本
不再允许从服务(前台或后台)启动活动。
在文档中仍然可以看到一些限制
https://developer.android.com/guide/components/activities/background-starts
答案 4 :(得分:1)
无法使用Context
的{{1}};能够得到(包)Service
一样:
Context
答案 5 :(得分:0)
可替换地,
您可以使用自己的Application类,并从您需要的任何地方进行呼叫(尤其是非活动)。
public class App extends Application {
protected static Context context = null;
@Override
public void onCreate() {
super.onCreate();
context = getApplicationContext();
}
public static Context getContext() {
return context;
}
}
注册您的Application类:
<application android:name="yourpackage.App" ...
然后致电:
App.getContext();
答案 6 :(得分:-1)
如果您需要从服务中调用后台活动,我建议使用以下链接。 Intent.FLAG_ACTIVITY_NEW_TASK不是解决方案。