简体   繁体   中英

How to start activity from service in Android10

I was starting activity from services till android P, but from android10 google has kept one restriction that activity cannot be started from background.

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

what should i do for android10 ?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM