我得到了如何实现这个线程Android 的 startforeground deom - 为服务实现 startForeground?
这也有效,但是通知被提及为已弃用,如何使用新通知来实现?请帮忙
我得到了如何实现这个线程Android 的 startforeground deom - 为服务实现 startForeground?
这也有效,但是通知被提及为已弃用,如何使用新通知来实现?请帮忙
我刚刚遇到了同样的问题。解决方案很简单。
使用NotificationCompat.Builder
创建通知,因为仅不推荐使用通知构造函数而不是整个类。
例子:
NotificationCompat.Builder builder = new NotificationCompat
.Builder(getApplicationContext());
builder.setContentTitle("Updating...");
builder.setSmallIcon(R.drawable.ic_action_search);
startForeground(NOTIFICATION_ID, builder.build());