如何在Android10中从服务启动活动

Rah*_*hul 6 android android-10.0

我从服务开始活动直到 android P,但从 android10 开始,谷歌保留了一项限制,即活动不能从后台启动。

https://developer.android.com/guide/components/activities/background-starts

// below code stopped working
Intent intent = new Intent(this, MyActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

我应该为 android10 做什么?

gre*_*f82 1

您可以使用通知setFullScreenIntent,这是您能做的最好的事情,或者您可以请求SYSTEM_ALERT_WINDOW许可,但它不适用于 android go 设备。