我有这段代码,它曾经可以正常工作
Notification notification = new NotificationCompat.Builder(context)
.setContentTitle(title)
.setContentText(message)
.setContentIntent(intent)
.setSmallIcon(icon)
.setLights(Color.YELLOW, 1, 2)
.setAutoCancel(true)
.setSound(defaultSound)
.build();
但是现在我更新了我的编译设置以使用 Android 4.3 进行编译,并且似乎找不到 .build() 方法。有谁知道为什么会这样?
编辑
在官方文档中, .build() 方法就在那里:http: //developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html