android 开启前台服务,并隐藏8.0以下的通知
1.首先在activityj里面启动
Intent intent = new Intent(MainActivity.this, MyService.class);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(intent );
} else {
startServ...
原创
2019-10-11 14:01:17 ·
1594 阅读 ·
0 评论