赞
踩
问题:缺少权限:android.permission.FOREGROUND_SERVICE
解决:在AndroidManifest.xml中加入权限
源代码:
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
Android8.0服务类(myservice)的前台服务源代码:
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG,"启动服务");
Intent intent=new Intent(this,MainActivity.class);
PendingIntent pi=PendingIntent.getActivity(this,0,intent,0);
NotificationManager manager=(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
if
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。