NotificationCompat Builder和Android O.

时间:2017-10-24 09:02:42

标签: android android-notifications android-8.0-oreo

这可能是一个愚蠢的问题,但我无法弄清楚出了什么问题。

我遇到Android 26和NotificationCompat更新的问题。 我正在尝试使用新的构建器:

NotificationCompat.Builder(Context context, String channelId)

但是当我构建它时声明我给了很多参数,并且它只期望有Context上下文。

SDK和SDK工具已更新至第26版,我尝试在gradle.build中添加一些依赖项,但没有运气:

compile 'com.android.support:support-v4:26.1.0'
compile 'com.android.support:support-compat:26.1.0'
compile 'com.android.support:appcompat-v7:26.1.0'

在java文件中我正在导入v4.app.NotificationCompat:

import android.support.v4.app.NotificationCompat;

它仍然会出现相同的错误,例如NotificationCompat未更新。

你能帮帮我吗? :d

0 个答案:

没有答案