---
title: "What is a Broadcast receivers?"  
description: "What is a Broadcast receivers?"  
author: "James Smith"  
published: 2011-11-10  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/1355/what-is-a-broadcast-receivers  
category: "mobile development"  
tags: ["mobile development"]  
reading_time: 1 minute  

---

# What is a Broadcast receivers?

A broadcast receiver is a component that does nothing but receive and react to broadcast announcements.\
For example, announcements that the timezone has changed, that the battery is low or that the user changed a language preference.\
All receivers extend the BroadcastReceiver base class.\
Broadcast receivers do not display a user interface. However, they may start an activity in response to the information they receive, or they may use the NotificationManager to alert the user like(flashing the backlight, vibrating the device, playing a sound)

## Answers

### Answer by James Smith

A broadcast receiver is a component that does nothing but receive and react to broadcast announcements.\
For example, announcements that the timezone has changed, that the battery is low or that the user changed a language preference.\
All receivers extend the BroadcastReceiver base class.\
Broadcast receivers do not display a user interface. However, they may start an activity in response to the information they receive, or they may use the NotificationManager to alert the user like(flashing the backlight, vibrating the device, playing a sound)


---

Original Source: https://www.mindstick.com/interview/1355/what-is-a-broadcast-receivers

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
