SlideShare a Scribd company logo
1 of 62
Broadcast receivers
Ilio Catallo, Eleonora Ciceri – Politecnico di Milano
ilio.catallo@polimi.it, eleonora.ciceri@polimi.it
TakeNotes v4: features
2
Study Android
Delete an existing note
Listeners
Insert text here
Create a new note
Intents
Store existing notes
Persistence
TakeNotes: functionalities we are
adding today
¤ Some to-dos require to perform the associated tasks
before a given deadline
3
Deliver my Mobile
Applications project
Deliver: today
TakeNotes: functionalities we are
adding today
¤ We are going to associate alarms with the to-dos that
require to be finished before a given date
4
Creating a new note
The user decides
whether to associate an
alarm with it
Deadline is reached
A popup message
appears on the screen
The user is notified: the
task has to be
completed
TakeNotes: add an alarm
5
Insert text here
Add alarm
Set alarm
To do
TakeNotes: notify the user
6
Either when the
application is active…
To do
...or not.
Other
stuff
here
!
Broadcast Intents
7
Using Intents to broadcast events
¤ Intents are able to send messages across process
boundaries
¤ You can implement a Broadcast Receiver to listen for
(and respond to) these broadcast messages
8
Application 1
Application 2
System
My application
Broadcast Intents
¤ An intent used to send broadcasts to other applications is
called Broadcast Intent
¤ Broadcast Intents notify applications of system events
and application events
¤ Examples of system events
¤ Changes in network connectivity
¤ Incoming calls
¤ Docking state (car, desk, …)
9
Types of broadcasts
¤ There are two classes of broadcasts that can be
received:
¤ Normal broadcasts: completely asynchronous
¤ All receivers of the broadcast are run in an undefined
order
¤ More efficient
¤ Ordered broadcasts: delivered to one receiver at a time
¤ When a receiver executes, it can propagate the result to
the next receiver or abort the broadcast
10
Normal broadcasts
¤ The method Context.sendBroadcast(Intent)
broadcasts the given intent to all interested receivers
¤ Asynchronous call
¤ It returns immediately
11
Execution flow
Send broadcast
Normal broadcasts
¤ Procedure
¤ Build the Intent to be broadcasted
¤ Call sendBroadcast()to send it
12
Ordered broadcasts
¤ The method Context.sendOrderedBroadcast()
broadcasts the given intent to all interested Broadcast
receivers
¤ Asynchronous call
¤ It returns immediately
13
Execution flow
Send broadcast
The PendingIntent class
¤ A pending intent provides a mechanism for creating
Intents that can be fired on the application’s behalf:
¤ By another application
¤ At a later time
14
I
The PendingIntent class
¤ A pending intent provides a mechanism for creating
Intents that can be fired on the application’s behalf:
¤ By another application
¤ At a later time
15
I
The PendingIntent class
¤ A pending intent packages other Intents that will be fired
in response to a future event
16
Pending intent: start an Activity
¤ A pending intent can start an Activity
17
If the pending intent already exists,
update it with the new content
Pending intent: start a Service
¤ A pending intent can start a Service
18
If the pending intent already exists,
update it with the new content
Pending intent: broadcast an Intent
¤ A pending intent can broadcast an Intent
19
If the pending intent already exists,
update it with the new content
Broadcast receivers
20
Broadcast receivers
¤ A broadcast receiver is a class containing the code that
will receive the Broadcast Intents and handle requests
¤ To register a broadcast receiver to the application, simply
declare it in the manifest:
21
The onReceive() method
¤ To create a new Broadcast Receiver, extend the
BroadcastReceiver class and override the
onReceive() method
22
The onReceive() method
¤ The onReceive() method is executed when a Broadcast
Intent is received that matches its purpose
¤ As answers, the Broadcast Receiver:
¤ Update contents
¤ Launch services
¤ Update Activity UI
¤ Notify the user using the Notification Manager
23
Start activities: Intents vs. Broadcasts
¤ Note that the Intent broadcast mechanism is completely
separated from Intents that are used to start activities
¤ There is no way for a broadcast receiver to see or
capture Intents used with the startActivity() method
¤ Starting an activity with an Intent is a foreground operation
that modifies what the user is currently interacting with
¤ Broadcasting an Intent is a background operation that the
user is not normally aware of
24
The broadcast receiver lifecycle
¤ A broadcast receiver object is valid for the duration of
the call to onReceive()
¤ Once the code returns from this function, the system
considers the object to be finished and no longer active
¤ Complete lifecycle
¤ When onReceive() is executing, the receiver is running as a
foreground process
¤ Once onReceive() returns, the receiver is not active
¤ If the hosting process was only hosting the receiver, the
system considers it as an empty process and kills it
25
The broadcast receiver lifecycle
¤ Asynchronous operations are NOT available:
¤ You have to return from the function to handle the
asynchronous operation, but…
¤ …at that point the receiver is not active: the process is killed
before the asynchronous operation is performed
¤ Best practice:
¤ Never show a dialog from within a broadcast receiver
¤ For longer-running applications: use a Service in conjunction
with a Broadcast Receiver
26
Delaying actions
27
Delaying actions
¤ Pending intents can be used to cast broadcast messages
at a later time
¤ They contain an Intent specifying the details of the action to
be performed (that will be send to the Broadcast Receiver)
¤ Idea
¤ Create a pending intents specifying the action that has to
be fired
¤ Create an alarm associated with the pending intent
28
The system services
¤ Several system services are available via the
getSystemService() method
¤ Complete list here
29
System service Usage
Power manager Controlling power management
Notification manager Informing the user of background events
Location manager Controlling location (e.g., GPS) updates
WiFi manager Management of WiFi connectivity
The alarm manager
¤ The alarm manager is a system service that allows the
developer to schedule the application to be run at some
point in the future
¤ Expected behavior:
30
Wait
The alarm manager
¤ The alarm manager is retrieved as follows:
¤ An alarm is set as follows:
31
Require that the
device will wake up in
case it is sleeping when
the alarm goes off
Delaying actions
32
ü Define the action
ü Include extras (e.g.,
messages)
Delaying actions
33
ü Define the action
ü Include extras (e.g.,
messages)
Create a Pending
intent that will require
to broadcast the Intent
Delaying actions
34
ü Define the action
ü Include extras (e.g.,
messages)
Create a Pending
intent that will require
to broadcast the Intent
Delaying actions
35
ü Define the action
ü Include extras (e.g.,
messages)
Create a Pending
intent that will require
to broadcast the Intent
Delaying actions
36
ü Define the action
ü Include extras (e.g.,
messages)
Create a Pending
intent that will require
to broadcast the Intent
Broadcast
Delaying actions
37
ü Define the action
ü Include extras (e.g.,
messages)
Create a Pending
intent that will require
to broadcast the Intent
The broadcast receiver
that was meant to receive
the intent captures the
message
Delaying actions
38
ü Define the action
ü Include extras (e.g.,
messages)
Create a Pending
intent that will require
to broadcast the Intent
The broadcast receiver
that was meant to receive
the intent captures the
message
More on views
39
Views appearance
¤ Fancy stuff here! It is possible to assign a different
appearance to several views included in the application
¤ The R class stores a list of theme attributes that can be
applied to several types of view
¤ Complete list here
¤ An example:
40
starStyle on checkboxes
¤ The style:
¤ is obtained as follows:
41
Pickers
¤ Android provides controls for the user to pick a time or
pick a date as ready-to-use dialogs
¤ Each picker provides controls for selecting each part of:
¤ Time (hour/minute/AM-PM)
¤ Date (month/year/day)
42
Pickers
¤ The pickers can be created by adding them in the XML
layout file
¤ Date picker
¤ Time picker
43
TakeNotes v5
Adding alarms and displaying them
44
Prepare the setting: the pickers
¤ In the layout file of AddToDoActivity we add two pickers:
45
Prepare the setting: the pickers
¤ In the layout file of AddToDoActivity we add two pickers:
46
Noticed something strange?
Prepare the setting: the pickers
¤ In the layout file of AddToDoActivity we add two pickers:
47
Noticed something strange?
We are using match_parent instead of
fill_parent. They are the same!
ü Specifically, match_parent is the way in
which Android renames fill_parent in
API Level 8+
Prepare the setting: the checkbox
¤ A user could decide to create a to-do item without
adding an alarm for it
¤ Thus, we add a checkbox that, if clicked, enables the
pickers (thus allowing the user to add the alarm)
48
A new version for the TakeNotes
database
¤ In the new TakeNotes version, the date is stored in the
database together with the to-do message
¤ The database handler is thus modified, adding new fields
to the to-do table:
49
Enable/disable the pickers
¤ In the onCreate() method of AddToDoActivity, we
add a listener to the checkbox:
50
Save the alarm date
¤ Once the button “Add to list” is clicked, we need to:
¤ Verify whether an alarm was set for the new item
¤ In case, store the date so that it can be retrieved by the
ToDoListActivity class
51
Retrieve the date from the date picker
¤ The date picker stores information about the selected:
¤ Year
¤ Month
¤ Day
¤ To retrieve this information:
52
Retrieve the time from the time picker
¤ The time picker stores information about the selected:
¤ Hour
¤ Minute
¤ To retrieve this information:
53
Returning the result to ToDoListActivity
¤ The result now contains:
¤ The to-do text
¤ The alarm date (in case)
¤ The call to addNewToDoToList() is thus modified
54
Start the alarm
¤ If the date is not empty, the alarm needs to be started
¤ When the alarm will go off, a dialog box containing the text
of the to-do item will be displayed
¤ We start by creating the intent:
55
Start the alarm
¤ Then, the intent is encapsulated into a pending intent,
which will require to send the message as a broadcast
message:
¤ Finally, the alarm is set:
56
Handle the request
¤ The AlarmReceiver class implements the broadcast
receiver that will require to show the popup on the
screen
¤ In the onReceive() method, we receive the intent
containing the to-do item text:
¤ Then, we verify whether the to-do is still in the list:
57
Require the popup
¤ A new intent is created
¤ This intent will require to the ShowAlarmPopupActivity to
visualize the popup containing the to-do text
58
Display the popup
¤ When the activity is created, the popup is shown on the
screen
¤ The popup contains the to-do text, retrieved from the intent
59
Display the popup
¤ When the user clicks on the positive button of the popup,
the ReturnToListListener requires to terminate the
current activity (i.e., ShowAlarmPopupActivity):
60
References
61
References
¤ BroadcastReceiver class reference:
http://developer.android.com/reference/android/conte
nt/BroadcastReceiver.html
¤ DatePicker class reference:
http://developer.android.com/reference/android/widge
t/DatePicker.html
¤ Android developers guide, Pickers
http://developer.android.com/guide/topics/ui/controls/
pickers.html
62

More Related Content

What's hot

What's hot (20)

Classes, objects in JAVA
Classes, objects in JAVAClasses, objects in JAVA
Classes, objects in JAVA
 
Android Telephony Manager and SMS
Android Telephony Manager and SMSAndroid Telephony Manager and SMS
Android Telephony Manager and SMS
 
Android UI
Android UIAndroid UI
Android UI
 
Asp.NET Validation controls
Asp.NET Validation controlsAsp.NET Validation controls
Asp.NET Validation controls
 
SQLite database in android
SQLite database in androidSQLite database in android
SQLite database in android
 
Android intents
Android intentsAndroid intents
Android intents
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
 
Java Server Pages(jsp)
Java Server Pages(jsp)Java Server Pages(jsp)
Java Server Pages(jsp)
 
Java keywords
Java keywordsJava keywords
Java keywords
 
Android resource
Android resourceAndroid resource
Android resource
 
Basics and different xml files used in android
Basics and different xml files used in androidBasics and different xml files used in android
Basics and different xml files used in android
 
Python programming : Threads
Python programming : ThreadsPython programming : Threads
Python programming : Threads
 
Core java concepts
Core java  conceptsCore java  concepts
Core java concepts
 
Fragment
Fragment Fragment
Fragment
 
Android styles and themes
Android styles and themesAndroid styles and themes
Android styles and themes
 
Android notification
Android notificationAndroid notification
Android notification
 
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
Android User Interface Tutorial: DatePicker, TimePicker & SpinnerAndroid User Interface Tutorial: DatePicker, TimePicker & Spinner
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
 
Servlets
ServletsServlets
Servlets
 
RichControl in Asp.net
RichControl in Asp.netRichControl in Asp.net
RichControl in Asp.net
 

Viewers also liked

Android Application Framework
Android Application FrameworkAndroid Application Framework
Android Application FrameworkDanny Fürniß
 
Open Intents - Android Intents Mechanism and Dependency Management
Open Intents - Android Intents Mechanism and Dependency ManagementOpen Intents - Android Intents Mechanism and Dependency Management
Open Intents - Android Intents Mechanism and Dependency ManagementFriedger Müffke
 
Android Application Fundamentals
Android Application FundamentalsAndroid Application Fundamentals
Android Application FundamentalsVikalp Jain
 
Events and Listeners in Android
Events and Listeners in AndroidEvents and Listeners in Android
Events and Listeners in Androidma-polimi
 
Android Components & Manifest
Android Components & ManifestAndroid Components & Manifest
Android Components & Manifestma-polimi
 
Android User Interface: Basic Form Widgets
Android User Interface: Basic Form WidgetsAndroid User Interface: Basic Form Widgets
Android User Interface: Basic Form WidgetsAhsanul Karim
 
Android Lesson 3 - Intent
Android Lesson 3 - IntentAndroid Lesson 3 - Intent
Android Lesson 3 - IntentDaniela Da Cruz
 
Android Development: The Basics
Android Development: The BasicsAndroid Development: The Basics
Android Development: The BasicsMike Desjardins
 

Viewers also liked (9)

Android Application Framework
Android Application FrameworkAndroid Application Framework
Android Application Framework
 
Open Intents - Android Intents Mechanism and Dependency Management
Open Intents - Android Intents Mechanism and Dependency ManagementOpen Intents - Android Intents Mechanism and Dependency Management
Open Intents - Android Intents Mechanism and Dependency Management
 
Android Fundamentals
Android FundamentalsAndroid Fundamentals
Android Fundamentals
 
Android Application Fundamentals
Android Application FundamentalsAndroid Application Fundamentals
Android Application Fundamentals
 
Events and Listeners in Android
Events and Listeners in AndroidEvents and Listeners in Android
Events and Listeners in Android
 
Android Components & Manifest
Android Components & ManifestAndroid Components & Manifest
Android Components & Manifest
 
Android User Interface: Basic Form Widgets
Android User Interface: Basic Form WidgetsAndroid User Interface: Basic Form Widgets
Android User Interface: Basic Form Widgets
 
Android Lesson 3 - Intent
Android Lesson 3 - IntentAndroid Lesson 3 - Intent
Android Lesson 3 - Intent
 
Android Development: The Basics
Android Development: The BasicsAndroid Development: The Basics
Android Development: The Basics
 

Similar to Broadcast Receivers in Android

Ch5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internetCh5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internetShih-Hsiang Lin
 
Data Transfer between Activities & Databases
Data Transfer between Activities & DatabasesData Transfer between Activities & Databases
Data Transfer between Activities & DatabasesMuhammad Sajid
 
Android Activities.pdf
Android Activities.pdfAndroid Activities.pdf
Android Activities.pdfssusere71a07
 
Combine Framework
Combine FrameworkCombine Framework
Combine FrameworkCleveroad
 
Under the Trenchcoat: Neutron Agent Extensions
Under the Trenchcoat: Neutron Agent ExtensionsUnder the Trenchcoat: Neutron Agent Extensions
Under the Trenchcoat: Neutron Agent ExtensionsMargaret Frances
 
3 - Thermometer.pptx thermometer thermometer thermometer
3 - Thermometer.pptx thermometer thermometer thermometer3 - Thermometer.pptx thermometer thermometer thermometer
3 - Thermometer.pptx thermometer thermometer thermometeraustcornish143
 
Data Transfer between activities and Database
Data Transfer between activities and Database Data Transfer between activities and Database
Data Transfer between activities and Database faiz324545
 
RxJava pour Android : présentation lors du GDG Android Montréal
RxJava pour Android : présentation lors du GDG Android MontréalRxJava pour Android : présentation lors du GDG Android Montréal
RxJava pour Android : présentation lors du GDG Android MontréalSidereo
 
Developing Rich Interfaces in JavaFX for Ultrabooks
Developing Rich Interfaces in JavaFX for UltrabooksDeveloping Rich Interfaces in JavaFX for Ultrabooks
Developing Rich Interfaces in JavaFX for UltrabooksFelipe Pedroso
 
Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...
Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...
Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...InfluxData
 
Active research on advanced debugging tools
Active research on advanced debugging toolsActive research on advanced debugging tools
Active research on advanced debugging toolsESUG
 
Using Quantiacs on Your Machine
Using Quantiacs on Your MachineUsing Quantiacs on Your Machine
Using Quantiacs on Your MachineQuantiacs
 
Open stack gbp final sn-4-slideshare
Open stack gbp final sn-4-slideshareOpen stack gbp final sn-4-slideshare
Open stack gbp final sn-4-slideshareSumit Naiksatam
 
Android webinar class_3
Android webinar class_3Android webinar class_3
Android webinar class_3Edureka!
 
GUI Programming using Tkinter-converted.pptx
GUI Programming using Tkinter-converted.pptxGUI Programming using Tkinter-converted.pptx
GUI Programming using Tkinter-converted.pptxdvarshitha04
 
Monitoring : The art of knowing when and why things go wrong
Monitoring : The art of knowing when and why things go wrongMonitoring : The art of knowing when and why things go wrong
Monitoring : The art of knowing when and why things go wrongOpen Source School
 
Build a custom metrics on aws cloud
Build a custom metrics on aws cloudBuild a custom metrics on aws cloud
Build a custom metrics on aws cloudAhmad karawash
 
A Context and User Aware Smart Notification System
A Context and User Aware Smart Notification SystemA Context and User Aware Smart Notification System
A Context and User Aware Smart Notification SystemTeodoro Montanaro
 

Similar to Broadcast Receivers in Android (20)

Ch5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internetCh5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internet
 
Bitcoin Price Prediction
Bitcoin Price PredictionBitcoin Price Prediction
Bitcoin Price Prediction
 
Data Transfer between Activities & Databases
Data Transfer between Activities & DatabasesData Transfer between Activities & Databases
Data Transfer between Activities & Databases
 
Android Activities.pdf
Android Activities.pdfAndroid Activities.pdf
Android Activities.pdf
 
Combine Framework
Combine FrameworkCombine Framework
Combine Framework
 
Under the Trenchcoat: Neutron Agent Extensions
Under the Trenchcoat: Neutron Agent ExtensionsUnder the Trenchcoat: Neutron Agent Extensions
Under the Trenchcoat: Neutron Agent Extensions
 
3 - Thermometer.pptx thermometer thermometer thermometer
3 - Thermometer.pptx thermometer thermometer thermometer3 - Thermometer.pptx thermometer thermometer thermometer
3 - Thermometer.pptx thermometer thermometer thermometer
 
Data Transfer between activities and Database
Data Transfer between activities and Database Data Transfer between activities and Database
Data Transfer between activities and Database
 
RxJava pour Android : présentation lors du GDG Android Montréal
RxJava pour Android : présentation lors du GDG Android MontréalRxJava pour Android : présentation lors du GDG Android Montréal
RxJava pour Android : présentation lors du GDG Android Montréal
 
Developing Rich Interfaces in JavaFX for Ultrabooks
Developing Rich Interfaces in JavaFX for UltrabooksDeveloping Rich Interfaces in JavaFX for Ultrabooks
Developing Rich Interfaces in JavaFX for Ultrabooks
 
Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...
Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...
Michael DeSa [InfluxData] | Monitoring Methodologies | InfluxDays Virtual Exp...
 
Active research on advanced debugging tools
Active research on advanced debugging toolsActive research on advanced debugging tools
Active research on advanced debugging tools
 
Using Quantiacs on Your Machine
Using Quantiacs on Your MachineUsing Quantiacs on Your Machine
Using Quantiacs on Your Machine
 
Introduction to Android
Introduction to AndroidIntroduction to Android
Introduction to Android
 
Open stack gbp final sn-4-slideshare
Open stack gbp final sn-4-slideshareOpen stack gbp final sn-4-slideshare
Open stack gbp final sn-4-slideshare
 
Android webinar class_3
Android webinar class_3Android webinar class_3
Android webinar class_3
 
GUI Programming using Tkinter-converted.pptx
GUI Programming using Tkinter-converted.pptxGUI Programming using Tkinter-converted.pptx
GUI Programming using Tkinter-converted.pptx
 
Monitoring : The art of knowing when and why things go wrong
Monitoring : The art of knowing when and why things go wrongMonitoring : The art of knowing when and why things go wrong
Monitoring : The art of knowing when and why things go wrong
 
Build a custom metrics on aws cloud
Build a custom metrics on aws cloudBuild a custom metrics on aws cloud
Build a custom metrics on aws cloud
 
A Context and User Aware Smart Notification System
A Context and User Aware Smart Notification SystemA Context and User Aware Smart Notification System
A Context and User Aware Smart Notification System
 

Recently uploaded

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 

Recently uploaded (20)

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 

Broadcast Receivers in Android

  • 1. Broadcast receivers Ilio Catallo, Eleonora Ciceri – Politecnico di Milano ilio.catallo@polimi.it, eleonora.ciceri@polimi.it
  • 2. TakeNotes v4: features 2 Study Android Delete an existing note Listeners Insert text here Create a new note Intents Store existing notes Persistence
  • 3. TakeNotes: functionalities we are adding today ¤ Some to-dos require to perform the associated tasks before a given deadline 3 Deliver my Mobile Applications project Deliver: today
  • 4. TakeNotes: functionalities we are adding today ¤ We are going to associate alarms with the to-dos that require to be finished before a given date 4 Creating a new note The user decides whether to associate an alarm with it Deadline is reached A popup message appears on the screen The user is notified: the task has to be completed
  • 5. TakeNotes: add an alarm 5 Insert text here Add alarm Set alarm To do
  • 6. TakeNotes: notify the user 6 Either when the application is active… To do ...or not. Other stuff here !
  • 8. Using Intents to broadcast events ¤ Intents are able to send messages across process boundaries ¤ You can implement a Broadcast Receiver to listen for (and respond to) these broadcast messages 8 Application 1 Application 2 System My application
  • 9. Broadcast Intents ¤ An intent used to send broadcasts to other applications is called Broadcast Intent ¤ Broadcast Intents notify applications of system events and application events ¤ Examples of system events ¤ Changes in network connectivity ¤ Incoming calls ¤ Docking state (car, desk, …) 9
  • 10. Types of broadcasts ¤ There are two classes of broadcasts that can be received: ¤ Normal broadcasts: completely asynchronous ¤ All receivers of the broadcast are run in an undefined order ¤ More efficient ¤ Ordered broadcasts: delivered to one receiver at a time ¤ When a receiver executes, it can propagate the result to the next receiver or abort the broadcast 10
  • 11. Normal broadcasts ¤ The method Context.sendBroadcast(Intent) broadcasts the given intent to all interested receivers ¤ Asynchronous call ¤ It returns immediately 11 Execution flow Send broadcast
  • 12. Normal broadcasts ¤ Procedure ¤ Build the Intent to be broadcasted ¤ Call sendBroadcast()to send it 12
  • 13. Ordered broadcasts ¤ The method Context.sendOrderedBroadcast() broadcasts the given intent to all interested Broadcast receivers ¤ Asynchronous call ¤ It returns immediately 13 Execution flow Send broadcast
  • 14. The PendingIntent class ¤ A pending intent provides a mechanism for creating Intents that can be fired on the application’s behalf: ¤ By another application ¤ At a later time 14 I
  • 15. The PendingIntent class ¤ A pending intent provides a mechanism for creating Intents that can be fired on the application’s behalf: ¤ By another application ¤ At a later time 15 I
  • 16. The PendingIntent class ¤ A pending intent packages other Intents that will be fired in response to a future event 16
  • 17. Pending intent: start an Activity ¤ A pending intent can start an Activity 17 If the pending intent already exists, update it with the new content
  • 18. Pending intent: start a Service ¤ A pending intent can start a Service 18 If the pending intent already exists, update it with the new content
  • 19. Pending intent: broadcast an Intent ¤ A pending intent can broadcast an Intent 19 If the pending intent already exists, update it with the new content
  • 21. Broadcast receivers ¤ A broadcast receiver is a class containing the code that will receive the Broadcast Intents and handle requests ¤ To register a broadcast receiver to the application, simply declare it in the manifest: 21
  • 22. The onReceive() method ¤ To create a new Broadcast Receiver, extend the BroadcastReceiver class and override the onReceive() method 22
  • 23. The onReceive() method ¤ The onReceive() method is executed when a Broadcast Intent is received that matches its purpose ¤ As answers, the Broadcast Receiver: ¤ Update contents ¤ Launch services ¤ Update Activity UI ¤ Notify the user using the Notification Manager 23
  • 24. Start activities: Intents vs. Broadcasts ¤ Note that the Intent broadcast mechanism is completely separated from Intents that are used to start activities ¤ There is no way for a broadcast receiver to see or capture Intents used with the startActivity() method ¤ Starting an activity with an Intent is a foreground operation that modifies what the user is currently interacting with ¤ Broadcasting an Intent is a background operation that the user is not normally aware of 24
  • 25. The broadcast receiver lifecycle ¤ A broadcast receiver object is valid for the duration of the call to onReceive() ¤ Once the code returns from this function, the system considers the object to be finished and no longer active ¤ Complete lifecycle ¤ When onReceive() is executing, the receiver is running as a foreground process ¤ Once onReceive() returns, the receiver is not active ¤ If the hosting process was only hosting the receiver, the system considers it as an empty process and kills it 25
  • 26. The broadcast receiver lifecycle ¤ Asynchronous operations are NOT available: ¤ You have to return from the function to handle the asynchronous operation, but… ¤ …at that point the receiver is not active: the process is killed before the asynchronous operation is performed ¤ Best practice: ¤ Never show a dialog from within a broadcast receiver ¤ For longer-running applications: use a Service in conjunction with a Broadcast Receiver 26
  • 28. Delaying actions ¤ Pending intents can be used to cast broadcast messages at a later time ¤ They contain an Intent specifying the details of the action to be performed (that will be send to the Broadcast Receiver) ¤ Idea ¤ Create a pending intents specifying the action that has to be fired ¤ Create an alarm associated with the pending intent 28
  • 29. The system services ¤ Several system services are available via the getSystemService() method ¤ Complete list here 29 System service Usage Power manager Controlling power management Notification manager Informing the user of background events Location manager Controlling location (e.g., GPS) updates WiFi manager Management of WiFi connectivity
  • 30. The alarm manager ¤ The alarm manager is a system service that allows the developer to schedule the application to be run at some point in the future ¤ Expected behavior: 30 Wait
  • 31. The alarm manager ¤ The alarm manager is retrieved as follows: ¤ An alarm is set as follows: 31 Require that the device will wake up in case it is sleeping when the alarm goes off
  • 32. Delaying actions 32 ü Define the action ü Include extras (e.g., messages)
  • 33. Delaying actions 33 ü Define the action ü Include extras (e.g., messages) Create a Pending intent that will require to broadcast the Intent
  • 34. Delaying actions 34 ü Define the action ü Include extras (e.g., messages) Create a Pending intent that will require to broadcast the Intent
  • 35. Delaying actions 35 ü Define the action ü Include extras (e.g., messages) Create a Pending intent that will require to broadcast the Intent
  • 36. Delaying actions 36 ü Define the action ü Include extras (e.g., messages) Create a Pending intent that will require to broadcast the Intent Broadcast
  • 37. Delaying actions 37 ü Define the action ü Include extras (e.g., messages) Create a Pending intent that will require to broadcast the Intent The broadcast receiver that was meant to receive the intent captures the message
  • 38. Delaying actions 38 ü Define the action ü Include extras (e.g., messages) Create a Pending intent that will require to broadcast the Intent The broadcast receiver that was meant to receive the intent captures the message
  • 40. Views appearance ¤ Fancy stuff here! It is possible to assign a different appearance to several views included in the application ¤ The R class stores a list of theme attributes that can be applied to several types of view ¤ Complete list here ¤ An example: 40
  • 41. starStyle on checkboxes ¤ The style: ¤ is obtained as follows: 41
  • 42. Pickers ¤ Android provides controls for the user to pick a time or pick a date as ready-to-use dialogs ¤ Each picker provides controls for selecting each part of: ¤ Time (hour/minute/AM-PM) ¤ Date (month/year/day) 42
  • 43. Pickers ¤ The pickers can be created by adding them in the XML layout file ¤ Date picker ¤ Time picker 43
  • 44. TakeNotes v5 Adding alarms and displaying them 44
  • 45. Prepare the setting: the pickers ¤ In the layout file of AddToDoActivity we add two pickers: 45
  • 46. Prepare the setting: the pickers ¤ In the layout file of AddToDoActivity we add two pickers: 46 Noticed something strange?
  • 47. Prepare the setting: the pickers ¤ In the layout file of AddToDoActivity we add two pickers: 47 Noticed something strange? We are using match_parent instead of fill_parent. They are the same! ü Specifically, match_parent is the way in which Android renames fill_parent in API Level 8+
  • 48. Prepare the setting: the checkbox ¤ A user could decide to create a to-do item without adding an alarm for it ¤ Thus, we add a checkbox that, if clicked, enables the pickers (thus allowing the user to add the alarm) 48
  • 49. A new version for the TakeNotes database ¤ In the new TakeNotes version, the date is stored in the database together with the to-do message ¤ The database handler is thus modified, adding new fields to the to-do table: 49
  • 50. Enable/disable the pickers ¤ In the onCreate() method of AddToDoActivity, we add a listener to the checkbox: 50
  • 51. Save the alarm date ¤ Once the button “Add to list” is clicked, we need to: ¤ Verify whether an alarm was set for the new item ¤ In case, store the date so that it can be retrieved by the ToDoListActivity class 51
  • 52. Retrieve the date from the date picker ¤ The date picker stores information about the selected: ¤ Year ¤ Month ¤ Day ¤ To retrieve this information: 52
  • 53. Retrieve the time from the time picker ¤ The time picker stores information about the selected: ¤ Hour ¤ Minute ¤ To retrieve this information: 53
  • 54. Returning the result to ToDoListActivity ¤ The result now contains: ¤ The to-do text ¤ The alarm date (in case) ¤ The call to addNewToDoToList() is thus modified 54
  • 55. Start the alarm ¤ If the date is not empty, the alarm needs to be started ¤ When the alarm will go off, a dialog box containing the text of the to-do item will be displayed ¤ We start by creating the intent: 55
  • 56. Start the alarm ¤ Then, the intent is encapsulated into a pending intent, which will require to send the message as a broadcast message: ¤ Finally, the alarm is set: 56
  • 57. Handle the request ¤ The AlarmReceiver class implements the broadcast receiver that will require to show the popup on the screen ¤ In the onReceive() method, we receive the intent containing the to-do item text: ¤ Then, we verify whether the to-do is still in the list: 57
  • 58. Require the popup ¤ A new intent is created ¤ This intent will require to the ShowAlarmPopupActivity to visualize the popup containing the to-do text 58
  • 59. Display the popup ¤ When the activity is created, the popup is shown on the screen ¤ The popup contains the to-do text, retrieved from the intent 59
  • 60. Display the popup ¤ When the user clicks on the positive button of the popup, the ReturnToListListener requires to terminate the current activity (i.e., ShowAlarmPopupActivity): 60
  • 62. References ¤ BroadcastReceiver class reference: http://developer.android.com/reference/android/conte nt/BroadcastReceiver.html ¤ DatePicker class reference: http://developer.android.com/reference/android/widge t/DatePicker.html ¤ Android developers guide, Pickers http://developer.android.com/guide/topics/ui/controls/ pickers.html 62