Skip to content Skip to sidebar Skip to footer

Custom Notification Layout Don't Work On Android 2.3 Or Lower

I use the NotificationCompat.Builder to display my notification through android versions and use a custom layout for the notification. The custom layout works fine on Android 3 and

Solution 1:

This may be a bug in the support library - see this issue.

You may have to work around it by applying the contentView directly:

not.contentView = contentView;

Post a Comment for "Custom Notification Layout Don't Work On Android 2.3 Or Lower"