- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
首先,我看了这些;
我有一个近一百万人使用的流媒体应用程序。我正在为播放器使用前台服务。我还没有实现 MediaSession
。我有 99.95% 的无崩溃 session 。所以这个应用程序适用于所有版本,但我开始收到 android 9 的崩溃报告 (ANR)。此崩溃仅发生在 Samsung
手机上,尤其是 s9、s9+、s10、s10+、note9
模型。
我试过这些,
onCreate()
中调用startForeground()
方法Context.stopService()
之前调用 Service.startForeground()
我读了 Google 开发人员的一些评论,他们说这只是预期行为
。请问是三星的系统还是安卓系统出现的。有人对此有意见吗?我该如何解决这个问题?
最佳答案
在与这次崩溃进行了太多的斗争之后,我终于完全修复了这个异常并找到了解决方案。
确保在您的服务中完成了这些工作,我将它们列在下面:(其中一些内容是重复的,正如另一个答案中提到的,我只是重新写了一遍)。
1- 调用
startForeground()
在onCreate和onStartCommand中。(可以多次调用startForeground())
@Override
public void onCreate() {
super.onCreate();
startCommand();
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (intent == null) {
return START_NOT_STICKY;
}
final int command = intent.getIntExtra(MAIN_SERVICE_COMMAND_KEY, -1);
if (command == MAIN_SERVICE_START_COMMAND) {
startCommand();
return START_STICKY;
}
return START_NOT_STICKY;
}
private void startCommand() {
createNotificationAndStartForeground();
runningStatus.set(STARTED);
}
2- 停止您的服务使用
context.stopService()
,无需调用 stopForeground() 或 stopSelf()。
try {
context.stopService(
new Intent(
context,
NavigationService.class
)
);
} catch (Exception ex) {
Crashlytics.logException(ex);
LogManager.e("Service manager can't stop service ", ex);
}
3- 开始您的服务使用
ContextCompat.startForegroundService()
它将处理不同的 API 版本。
ContextCompat.startForegroundService(
context,
NavigationService.getStartIntent(context)
);
4- 如果您的服务有操作(需要待处理的 Intent),则使用广播接收器处理您的待处理的 Intent,而不是您当前的服务(它将调用您的服务Create() 并且可能很危险,或者使用 PendingIntent.FLAG_NO_CREATE) ,使用特定的广播接收器来处理您的服务通知操作是一个很好的做法,我的意思是使用 PendingIntent.getBroadcast() .
private PendingIntent getStopActionPendingIntent() {
final Intent stopNotificationIntent = getBroadCastIntent();
stopNotificationIntent.setAction(BROADCAST_STOP_SERVICE);
return getPendingIntent(stopNotificationIntent);
}
private PendingIntent getPendingIntent(final Intent intent) {
return PendingIntent.getBroadcast(
this,
0,
intent,
0
);
}
new NotificationCompat.Builder(this, CHANNEL_ID)
.addAction(
new NotificationCompat.Action(
R.drawable.notification,
getString(R.string.switch_off),
getStopActionPendingIntent()
)
)
5- 始终在停止您的服务之前确保您的服务已创建并启动(我创建了一个具有我的服务状态的全局类)
if (navigationServiceStatus == STARTED) {
serviceManager.stopNavigationService();
}
6- 将您的 notificationId 设置为一个长数字,例如 121412。
7- 使用 NotificationCompat.Builder 将处理不同的 API 版本,您只需要为构建版本创建通知 channel >= Build.VERSION_CODES.O。(这不是解决方案,只是让您的代码更具可读性)
8- 添加
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
许可您的 list 。 (这个在android文档中提到) Android Foreground Service
希望对您有所帮助:))
关于Android 9 (Pie), Context.startForegroundService() 没有调用 Service.startForeground() : ServiceRecord,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55894636/
正如问题标题所问,我想知道它们之间的区别是什么,因为文档不是很清楚它们是否真的存在差异。 提前致谢。 最佳答案 ContextCompat 是用于兼容性目的的实用程序类。 context.startF
将我的应用程序更新为目标 API 27(之前为 25)后,我遇到了许多来自用户的 ANR,但我无法重现。它们似乎与 Oreo 后台执行限制有关,并带有 ANR 消息 Context.startFore
我的 Android 服务中的 Context.startForegroundService() 没有调用 Service.startForeground(),但我不明白为什么会这样。 我的应用是做流
如果我多次调用 context.startForegroundService(startServiceIntent),我会多次调用带有新服务 Intent 的 onCreate() 还是我会第一次调用
我对三星设备上的服务后台工作有疑问。 Fatal Exception: android.app.RemoteServiceException: Context.startForegroundServi
如果设备操作系统是 Android 9(Pie),我已调用 Context.startForgroundService() 但有时它会抛出错误,例如“Context.startForgroundSer
我的应用程序将在 MainActivity 的 onCreate 中调用 startForegroundService(intent)。我将 startForeground(ON_SERVICE_CO
我从 Device Monitor 得到以下异常输出: //FATAL EXCEPTION: main //Process: com.xxx.yyy, PID: 11584 //android.app
这是我的 BroadcastReciever 类。处理启动手机状态的类(class)。 代码; public class BroadCastRecieverBoot extends Broadcast
我在 Android O 操作系统上使用 Service 类。 我打算在后台使用Service。 Android documentation声明 If your app targets API lev
在检查了 google 问题和 SO 上的许多其他问题后,我找到了在底部添加的解决方案。 我负责的事情如下: 在 onCreate 和 onStartCommand 中,我确保将服务移至前台(如果它尚
我不断在标题中收到错误,我不知道该怎么办..(这是一个水提醒应用程序。)论坛中有很多荒谬的主题。没有人正确回答。我用它在设备重新启动时运行。我研究了很多问题,但没有人正确回答。 请帮助我。提前致谢!
所以我的应用程序有一些触发服务和通知的远程操作。在调用 startForegroundService 和服务尝试启动通知之间,事情可能会发生变化,因此服务会再次检查事情的状态,然后决定要做什么。 因此
我在 Android 8.0 和 Android 7.x 中都通过 Fabric.io 收到了这个错误报告。 由于不仅仅是特定类失败,我不知道如何处理它们。 如果你有任何想法,请帮助我。 最佳答案 在
注意:这个问题假设您知道将服务绑定(bind)到上下文。 制作中的每个人都知道这个问题,甚至一些拥有 Android Oreo 或 Pie 设备的用户都知道。异常如下所示: Fatal Excepti
我目前正在研究如何创建一个 float 的前台泡泡聊天头服务。 但是,我注意到我尝试使用的所有库都不适用于 API-28。 我相信这是由于提到的新限制 here in the Android docs
我正在使用的应用程序(在 Android O 中)将在设备重启后启动服务。设备重启后,在广播接收器的 onReceive() 方法中,它会调用服务作为 Android OS 8 及更高版本的 star
我注意到 Pixel 5 和 Pixel 4a(都在 Android 12 上)的一个异常(exception)(Firebase Crashlytics),没有其他设备,只发生了两次,每个设备一次。
我有点困惑,因为我读了一些帖子,如果 API >= 26,我也应该使用 ContextCompat.StartForegroundService();。 现在我仍然只使用 StartService 并
首先,我看了这些; Context.startForegroundService() did not then callService.startForeground() Context.startF
我是一名优秀的程序员,十分优秀!