Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialPatrick Coyne
5,026 PointsNotifications on Android 8.0 (Oreo)
I am wondering how to update Notification to be used on Android 8.0 and above, they do not show the notifications in the video. For when putting them into the foreground on the musicMachine app
Michael Nock
Android Development Techdegree Graduate 16,018 PointsMichael Nock
Android Development Techdegree Graduate 16,018 PointsOn Android 8.0 you need to create a NotificationChannel and then add the ChannelId to your Notification Builder object. You'll need to create the NotificationChannel with the NotificationManager's (
getSystemService(Context.NOTIFICATION_SERVICE)
)createNotificationChannel
method.Here's an example of what you could do: