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 trial

Android Intents and Broadcast Receivers Local Notifications Creating a Local Notification

Challenge Task 1 of 5 As we are traveling through space and time, we will occasionally receive distress calls. I've c

how do i declare a notification builder in on recive method

Challenge Task 1 of 5

As we are traveling through space and time, we will occasionally receive distress calls. I've created a Broadcast Receiver to handle these. We should create a local notification each time one of these calls is received. Start by declaring a notification builder in the onReceive() method below.

DistressCallReceiver.java
public class DistressCallReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // Add your code here!
      Notification.Builder builder = new Notification.Builder();

    }
}

1 Answer

You have to pass a context inside a Constructor like stated --> , " new Notification.Builder(context); "