【发布时间】:2020-07-08 02:10:21
【问题描述】:
这是在 logcat 中显示的问题。
无法使用 Intent { cmp=package/.DownloadService (has extras) } 启动服务 .DownloadService@489b627:java.lang.NullPointerException
我在使用 Android 26 或更高版本后遇到此问题。
我正在使用 startForegroundService 并在清单中添加了权限
if (Build.VERSION.SDK_INT >= 26) {
home.this.mContext.startForegroundService(intent);
} else {
home.this.mContext.startService(intent);
}
【问题讨论】: