我可以在最新的SDK版本中使用Android 2.2中的通知吗?

时间:2017-08-24 16:08:53

标签: android compatibility

NotificationCompat.Builder使用的Class NotificationCompatBase需要API 9。

如果我使用它,我有错误:

FATAL EXCEPTION: main java.lang.NoSuchFieldError: android.app.Notification.fullScreenIntent

还有另一种方法可以做到这一点或不可能吗?

更新

测试通知构建代码:

notification = new NotificationCompat.Builder(this)
                    .setTicker("this is ticker text")
                    .setContentTitle( "Title" )
                    .setContentText( "Text" )
                    .setFullScreenIntent( pendingIntent, true )
                    .setSmallIcon( R.mipmap.ic_launcher )
                    .setWhen( System.currentTimeMillis() )
                    .getNotification();

0 个答案:

没有答案