176k views
5 votes
When you code a class that defines a broadcast receiver, you override a method that's executed when the broadcast is received. What's the name of this method?

User Jla
by
7.8k points

1 Answer

4 votes

Final answer:

In a broadcast receiver class in Android, the overridden method that's executed upon receiving a broadcast is called onReceive().

Step-by-step explanation:

When you code a class that defines a broadcast receiver in Android, you override the onReceive() method that's executed when the broadcast is received. This method is called by the Android system when a broadcast that matches the intent filter set for the receiver is detected.

The onReceive() method takes two parameters: a Context object that provides access to the application environment, and an Intent object that contains the broadcast data. In the body of the onReceive() method, you implement the logic that should be performed in response to the broadcast.

In coding a class that defines a broadcast receiver, the method that needs to be overridden is onReceive. This method is automatically executed when the broadcast is received by the receiver class. It takes two parameters: a Context object and an Intent object. Within this method, you can write the code to perform the desired actions when a broadcast is received.

User Toji
by
7.9k points