0

我得到了如何实现这个线程Android 的 startforeground deom - 为服务实现 startForeground?

这也有效,但是通知被提及为已弃用,如何使用新通知来实现?请帮忙

4

1 回答 1

0

我刚刚遇到了同样的问题。解决方案很简单。

使用NotificationCompat.Builder创建通知,因为仅不推荐使用通知构造函数而不是整个类。

例子:

NotificationCompat.Builder builder = new NotificationCompat
        .Builder(getApplicationContext());
builder.setContentTitle("Updating...");
builder.setSmallIcon(R.drawable.ic_action_search);

startForeground(NOTIFICATION_ID, builder.build());
于 2014-09-02T21:05:50.413 回答