美文网首页
Media projections require a fore

Media projections require a fore

作者: silladus | 来源:发表于2020-03-21 12:24 被阅读0次
Media projections require a foreground service of type ServiceInfo.FOREGROUND_SERVICE_TYPE_MEDIA_PRO

Android Q (Android10) 中,MediaProjection必须在前台服务中进行
参考链接:https://blog.csdn.net/qq_36332133/article/details/96485285

关键是要声明权限

  <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

然后以
startForegroundService(service);的方式启动服务
同时不要忘记startForeground(id, notification);设置服务,
不然会报异常

Context.startForegroundService() did not then call Service.startForeground()

相关文章

网友评论

      本文标题:Media projections require a fore

      本文链接:https://www.haomeiwen.com/subject/rmnsyhtx.html