SlideShare a Scribd company logo
ANDROID
WIDGET
Topics
 What is an App Widget?
App Widget framework
Steps for creating an App Widget
Creating App Widget
configuration Activity
What is App Widget?
Widgets are an essential aspect of home screen
customization. You can imagine them as "at-a-glance"
views of an app's most important data and
functionality that is accessible right from the user's
home screen.
Usage Examples of App Widgets
• People can drop widgets onto their home
screen and interact.
• Widgets can provide a quick glimpse into fully
featured apps, such as showing upcoming
calendar events, or viewing details about a
song playing in the background.
• Users can also interact with your app through
the widget, for example pausing or switching
music tracks.
AppWidget Framework
• AppWidgetProviderInfo object
> Describes the metadata for an App Widget, such as
the App Widget's layout, update frequency, and the
AppWidgetProvider class.
> This should be defined in XML.
AppWidget Framework
• AppWidgetProvider class
> Defines the basic methods that allow you to
programmatically interface with the App Widget,
based on broadcast events. (AppWidgetProvider
class is a child class of BroadcastReceiver class.)
> Through it, you will receive broadcasts when the App
Widget is updated, enabled, disabled and deleted.
AppWidget Framework(cont..)
• View layout
> Defines the initial layout for the App
Widget, defined in XML.
• Additionally, you can implement an App Widget
configuration Activity.
Steps for Building an App Widget
Declare an AppWidgetProvider in the Manifest
file
Create the AppWidgetProviderInfo Metadata
XML file
Create the App Widget Layout XML file
Write the AppWidgetProvider Class
Declare AppWidgetProvider in
Manifest
• The <receiver> element requires the android:name
attribute, which specifies the AppWidgetProvider
• The <intent-filter> element must include an <action>
element with the android:name attribute. This attribute
specifies that the AppWidgetProvider accepts the
ACTION_APPWIDGET_UPDATE broadcast.
• The <meta-data> element specifies the location
Create AppWidgetProviderInfo Metadata
• Define the AppWidgetProviderInfo object in an XML
resource using a single <appwidget-provider> element
and save it in the project's res/xml/ folder.
> This file is referenced from the manifest file
• Defines the essential qualities of an App Widget, such
as its minimum layout dimensions, its initial layout
resource, how often to update the AppWidget, and
(optionally) a configuration Activity to launch at create time.
Create App Widget Layout
• App Widget layouts are based on RemoteViews,
which do not support every kind of layout or
view widget.
• A RemoteViews object (and, consequently, an
App Widget) can support the following layouts
and Widget classes
Write AppWidgetProvider Class
The AppWidgetProvider class extends BroadcastReceiver as
a convenience class to handle the App Widget broadcasts
• Methods to override
> onUpdate(Context, AppWidgetManager, int[]) - called
when each App Widget is added to a host (unless you
use a configuration Activity), Typically the only
method that needs to be present
> onDeleted(Context, int[])
> onEnabled(Context)
>onDisabled(Context)
> onReceive(Context, Intent)
Why App Widget Configuration Activity?
• If you would like the user to configure settings when he or
she adds a new App Widget, you can create an App Widget
configuration Activity.
• This Activity will be automatically launched by the App
Widget host and allows the user to configure available settings
for the App Widget at create-time, such as the App Widget
colour, size, update period or other functionality settings.
Declare it in Manifest File
• The configuration Activity should be declared as a normal
Activity in the Android manifest file.
• However, it will be launched by the App Widget host with
the ACTION_APPWIDGET_CONFIGURE action, so the Activity
needs to accept this Intent
<activity android:name=".ExampleAppWidgetConfigure">
<intent-filter>
<action
android:name="android.appwidget.action.APPWIDGET_CONFI
GURE" />
</intent-filter>
</activity>
Declare it in Metadata Config file
• Also, the Activity must be declared in the
AppWidgetProviderInfo XML file, with the android:configure
attribute
<appwidget-provider
xmlns:android="http://schemas.android.com/apk/res/android"
...
android:configure="com.example.android.ExampleAppWidgetC
onfigure"
... >
</appwidget-provider>
Thank you
Ad

More Related Content

What's hot (20)

Multimedia on android
Multimedia on androidMultimedia on android
Multimedia on android
Ramesh Prasad
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
Benny Skogberg
 
Android Button
Android ButtonAndroid Button
Android Button
bhavin joshi
 
Top 11 Mobile App Development Frameworks
Top 11 Mobile App Development FrameworksTop 11 Mobile App Development Frameworks
Top 11 Mobile App Development Frameworks
Albiorix Technology
 
Android share preferences
Android share preferencesAndroid share preferences
Android share preferences
Ajay Panchal
 
Applet Architecture - Introducing Java Applets
Applet Architecture - Introducing Java AppletsApplet Architecture - Introducing Java Applets
Applet Architecture - Introducing Java Applets
amitksaha
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
saitej15
 
Android activity
Android activityAndroid activity
Android activity
Krazy Koder
 
CROSS PLATFORM APPLICATIONS DEVELOPMENT
CROSS PLATFORM APPLICATIONS DEVELOPMENT CROSS PLATFORM APPLICATIONS DEVELOPMENT
CROSS PLATFORM APPLICATIONS DEVELOPMENT
Kongu Engineering College, Perundurai, Erode
 
Basic android-ppt
Basic android-pptBasic android-ppt
Basic android-ppt
Srijib Roy
 
Web controls
Web controlsWeb controls
Web controls
Sarthak Varshney
 
Android - Android Intent Types
Android - Android Intent TypesAndroid - Android Intent Types
Android - Android Intent Types
Vibrant Technologies & Computers
 
Mobile Application Development With Android
Mobile Application Development With AndroidMobile Application Development With Android
Mobile Application Development With Android
guest213e237
 
Android App Development Project in College
Android App Development Project in College Android App Development Project in College
Android App Development Project in College
Logan Smith
 
Intents in Android
Intents in AndroidIntents in Android
Intents in Android
ma-polimi
 
Android Report
Android ReportAndroid Report
Android Report
Ganesh Waghmare
 
Introduction to fragments in android
Introduction to fragments in androidIntroduction to fragments in android
Introduction to fragments in android
Prawesh Shrestha
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
priya Nithya
 
Android ppt
Android pptAndroid ppt
Android ppt
Ansh Singh
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android
Ranjith Kumar
 
Multimedia on android
Multimedia on androidMultimedia on android
Multimedia on android
Ramesh Prasad
 
Android Application Development
Android Application DevelopmentAndroid Application Development
Android Application Development
Benny Skogberg
 
Top 11 Mobile App Development Frameworks
Top 11 Mobile App Development FrameworksTop 11 Mobile App Development Frameworks
Top 11 Mobile App Development Frameworks
Albiorix Technology
 
Android share preferences
Android share preferencesAndroid share preferences
Android share preferences
Ajay Panchal
 
Applet Architecture - Introducing Java Applets
Applet Architecture - Introducing Java AppletsApplet Architecture - Introducing Java Applets
Applet Architecture - Introducing Java Applets
amitksaha
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
saitej15
 
Android activity
Android activityAndroid activity
Android activity
Krazy Koder
 
Basic android-ppt
Basic android-pptBasic android-ppt
Basic android-ppt
Srijib Roy
 
Mobile Application Development With Android
Mobile Application Development With AndroidMobile Application Development With Android
Mobile Application Development With Android
guest213e237
 
Android App Development Project in College
Android App Development Project in College Android App Development Project in College
Android App Development Project in College
Logan Smith
 
Intents in Android
Intents in AndroidIntents in Android
Intents in Android
ma-polimi
 
Introduction to fragments in android
Introduction to fragments in androidIntroduction to fragments in android
Introduction to fragments in android
Prawesh Shrestha
 
Asp.net state management
Asp.net state managementAsp.net state management
Asp.net state management
priya Nithya
 
Introduction to Android
Introduction to Android Introduction to Android
Introduction to Android
Ranjith Kumar
 

Viewers also liked (18)

Fernando cembranos
Fernando cembranosFernando cembranos
Fernando cembranos
Diana Gonzalez Castillo
 
Levantam10
Levantam10Levantam10
Levantam10
gilsondiasdonascimento
 
test32renamed
test32renamedtest32renamed
test32renamed
Tatyana Remayeva
 
k12020 control theory ppt
k12020 control theory pptk12020 control theory ppt
k12020 control theory ppt
Sourabh Gupta
 
Dane estetik laser
Dane estetik laserDane estetik laser
Dane estetik laser
EstetikLaser
 
50-Behavior-Based-Interview-Questions
50-Behavior-Based-Interview-Questions50-Behavior-Based-Interview-Questions
50-Behavior-Based-Interview-Questions
Anirud Raghava
 
Jeff Moriarty, Johnston Press
Jeff Moriarty, Johnston PressJeff Moriarty, Johnston Press
Jeff Moriarty, Johnston Press
Interactive Scotland
 
Mike Meo, Harvard GSD Core Portfolio
Mike Meo, Harvard GSD Core PortfolioMike Meo, Harvard GSD Core Portfolio
Mike Meo, Harvard GSD Core Portfolio
Michael Meo
 
Lakhan singh
Lakhan singhLakhan singh
Lakhan singh
adityasinghjadon
 
OPERATE ROUGH TERAIN EQUIPMENT
OPERATE ROUGH TERAIN EQUIPMENTOPERATE ROUGH TERAIN EQUIPMENT
OPERATE ROUGH TERAIN EQUIPMENT
Lindsay Fritz
 
Новые направления развития на рынке металлосервисных услуг. Опыт СПК
Новые направления развития на рынке металлосервисных услуг. Опыт СПКНовые направления развития на рынке металлосервисных услуг. Опыт СПК
Новые направления развития на рынке металлосервисных услуг. Опыт СПК
Metal Supply&Sales Magazine
 
Microcontrollori
MicrocontrolloriMicrocontrollori
Microcontrollori
samu97
 
Equazione della circonferenza
Equazione della circonferenzaEquazione della circonferenza
Equazione della circonferenza
Redooc
 
Trabajo3 sem4 gogoc
Trabajo3 sem4 gogocTrabajo3 sem4 gogoc
Trabajo3 sem4 gogoc
Carlos Gonzalez
 
Android Notifications in Android Nougat 7.0
Android Notifications in Android Nougat 7.0Android Notifications in Android Nougat 7.0
Android Notifications in Android Nougat 7.0
Gracia Marcom
 
Business environment
Business environmentBusiness environment
Business environment
praveenwwars
 
Abdomen agudo
Abdomen agudoAbdomen agudo
Abdomen agudo
Renzo Geldres
 
Medio natural
Medio naturalMedio natural
Medio natural
Heriberto Garcia Zamora
 
k12020 control theory ppt
k12020 control theory pptk12020 control theory ppt
k12020 control theory ppt
Sourabh Gupta
 
Dane estetik laser
Dane estetik laserDane estetik laser
Dane estetik laser
EstetikLaser
 
50-Behavior-Based-Interview-Questions
50-Behavior-Based-Interview-Questions50-Behavior-Based-Interview-Questions
50-Behavior-Based-Interview-Questions
Anirud Raghava
 
Mike Meo, Harvard GSD Core Portfolio
Mike Meo, Harvard GSD Core PortfolioMike Meo, Harvard GSD Core Portfolio
Mike Meo, Harvard GSD Core Portfolio
Michael Meo
 
OPERATE ROUGH TERAIN EQUIPMENT
OPERATE ROUGH TERAIN EQUIPMENTOPERATE ROUGH TERAIN EQUIPMENT
OPERATE ROUGH TERAIN EQUIPMENT
Lindsay Fritz
 
Новые направления развития на рынке металлосервисных услуг. Опыт СПК
Новые направления развития на рынке металлосервисных услуг. Опыт СПКНовые направления развития на рынке металлосервисных услуг. Опыт СПК
Новые направления развития на рынке металлосервисных услуг. Опыт СПК
Metal Supply&Sales Magazine
 
Microcontrollori
MicrocontrolloriMicrocontrollori
Microcontrollori
samu97
 
Equazione della circonferenza
Equazione della circonferenzaEquazione della circonferenza
Equazione della circonferenza
Redooc
 
Android Notifications in Android Nougat 7.0
Android Notifications in Android Nougat 7.0Android Notifications in Android Nougat 7.0
Android Notifications in Android Nougat 7.0
Gracia Marcom
 
Business environment
Business environmentBusiness environment
Business environment
praveenwwars
 
Ad

Similar to Android Widget (20)

Android appwidget
Android appwidgetAndroid appwidget
Android appwidget
Krazy Koder
 
FlutterArchitecture FlutterArchitecture.ppt
FlutterArchitecture FlutterArchitecture.pptFlutterArchitecture FlutterArchitecture.ppt
FlutterArchitecture FlutterArchitecture.ppt
KevinNemo
 
FlutterArchitecture FlutterDevelopement (1).pptx
FlutterArchitecture FlutterDevelopement (1).pptxFlutterArchitecture FlutterDevelopement (1).pptx
FlutterArchitecture FlutterDevelopement (1).pptx
hw813301
 
Android Tutorial
Android TutorialAndroid Tutorial
Android Tutorial
Fun2Do Labs
 
App widget
App widgetApp widget
App widget
Anjan Debnath
 
Beginning android
Beginning android Beginning android
Beginning android
Igor R
 
Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...
Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...
Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...
DicodingEvent
 
Mobile application development
Mobile application developmentMobile application development
Mobile application development
umesh patil
 
Android Wear, a developer's perspective
Android Wear, a developer's perspectiveAndroid Wear, a developer's perspective
Android Wear, a developer's perspective
Sebastian Vieira
 
Compose camp 4.pptx
Compose camp 4.pptxCompose camp 4.pptx
Compose camp 4.pptx
bcedsc
 
Android Development : (Android Studio, PHP, XML, MySQL)
Android Development : (Android Studio, PHP, XML, MySQL)Android Development : (Android Studio, PHP, XML, MySQL)
Android Development : (Android Studio, PHP, XML, MySQL)
Kavya Barnadhya Hazarika
 
Android Development Basics
Android Development BasicsAndroid Development Basics
Android Development Basics
Prajakta Dharmpurikar
 
Android by Swecha
Android by SwechaAndroid by Swecha
Android by Swecha
Swecha | స్వేచ్ఛ
 
Android apps development
Android apps developmentAndroid apps development
Android apps development
Monir Zzaman
 
Workshop Android for Java Developers
Workshop Android for Java DevelopersWorkshop Android for Java Developers
Workshop Android for Java Developers
mhant
 
Using And Extending The DotNetNuke Widget Framework
Using And Extending The DotNetNuke Widget FrameworkUsing And Extending The DotNetNuke Widget Framework
Using And Extending The DotNetNuke Widget Framework
Nik Kalyani
 
Web application development process
Web application development processWeb application development process
Web application development process
John Smith
 
Android components
Android componentsAndroid components
Android components
NAVEENA ESWARAN
 
Ui 5
Ui   5Ui   5
Ui 5
Michael Shrove
 
Android App Development - 13 Broadcast receivers and app widgets
Android App Development - 13 Broadcast receivers and app widgetsAndroid App Development - 13 Broadcast receivers and app widgets
Android App Development - 13 Broadcast receivers and app widgets
Diego Grancini
 
Android appwidget
Android appwidgetAndroid appwidget
Android appwidget
Krazy Koder
 
FlutterArchitecture FlutterArchitecture.ppt
FlutterArchitecture FlutterArchitecture.pptFlutterArchitecture FlutterArchitecture.ppt
FlutterArchitecture FlutterArchitecture.ppt
KevinNemo
 
FlutterArchitecture FlutterDevelopement (1).pptx
FlutterArchitecture FlutterDevelopement (1).pptxFlutterArchitecture FlutterDevelopement (1).pptx
FlutterArchitecture FlutterDevelopement (1).pptx
hw813301
 
Android Tutorial
Android TutorialAndroid Tutorial
Android Tutorial
Fun2Do Labs
 
Beginning android
Beginning android Beginning android
Beginning android
Igor R
 
Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...
Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...
Dicoding Developer Coaching #21: Android | Cara Membuat Widget di Aplikasi An...
DicodingEvent
 
Mobile application development
Mobile application developmentMobile application development
Mobile application development
umesh patil
 
Android Wear, a developer's perspective
Android Wear, a developer's perspectiveAndroid Wear, a developer's perspective
Android Wear, a developer's perspective
Sebastian Vieira
 
Compose camp 4.pptx
Compose camp 4.pptxCompose camp 4.pptx
Compose camp 4.pptx
bcedsc
 
Android Development : (Android Studio, PHP, XML, MySQL)
Android Development : (Android Studio, PHP, XML, MySQL)Android Development : (Android Studio, PHP, XML, MySQL)
Android Development : (Android Studio, PHP, XML, MySQL)
Kavya Barnadhya Hazarika
 
Android apps development
Android apps developmentAndroid apps development
Android apps development
Monir Zzaman
 
Workshop Android for Java Developers
Workshop Android for Java DevelopersWorkshop Android for Java Developers
Workshop Android for Java Developers
mhant
 
Using And Extending The DotNetNuke Widget Framework
Using And Extending The DotNetNuke Widget FrameworkUsing And Extending The DotNetNuke Widget Framework
Using And Extending The DotNetNuke Widget Framework
Nik Kalyani
 
Web application development process
Web application development processWeb application development process
Web application development process
John Smith
 
Android App Development - 13 Broadcast receivers and app widgets
Android App Development - 13 Broadcast receivers and app widgetsAndroid App Development - 13 Broadcast receivers and app widgets
Android App Development - 13 Broadcast receivers and app widgets
Diego Grancini
 
Ad

Recently uploaded (20)

Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Introduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe EngineeringIntroduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe Engineering
Damian T. Gordon
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
SPRING FESTIVITIES - UK AND USA -
SPRING FESTIVITIES - UK AND USA            -SPRING FESTIVITIES - UK AND USA            -
SPRING FESTIVITIES - UK AND USA -
Colégio Santa Teresinha
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdfBiophysics Chapter 3 Methods of Studying Macromolecules.pdf
Biophysics Chapter 3 Methods of Studying Macromolecules.pdf
PKLI-Institute of Nursing and Allied Health Sciences Lahore , Pakistan.
 
2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx
contactwilliamm2546
 
Political History of Pala dynasty Pala Rulers NEP.pptx
Political History of Pala dynasty Pala Rulers NEP.pptxPolitical History of Pala dynasty Pala Rulers NEP.pptx
Political History of Pala dynasty Pala Rulers NEP.pptx
Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
How to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of saleHow to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of sale
Celine George
 
Social Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy StudentsSocial Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy Students
DrNidhiAgarwal
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Introduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe EngineeringIntroduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe Engineering
Damian T. Gordon
 
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingHow to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
How to Customize Your Financial Reports & Tax Reports With Odoo 17 Accounting
Celine George
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx
contactwilliamm2546
 
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Niamh Lucey, Mary Dunne. Health Sciences Libraries Group (LAI). Lighting the ...
Library Association of Ireland
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
How to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of saleHow to manage Multiple Warehouses for multiple floors in odoo point of sale
How to manage Multiple Warehouses for multiple floors in odoo point of sale
Celine George
 
Social Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy StudentsSocial Problem-Unemployment .pptx notes for Physiotherapy Students
Social Problem-Unemployment .pptx notes for Physiotherapy Students
DrNidhiAgarwal
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 

Android Widget

  • 2. Topics  What is an App Widget? App Widget framework Steps for creating an App Widget Creating App Widget configuration Activity
  • 3. What is App Widget? Widgets are an essential aspect of home screen customization. You can imagine them as "at-a-glance" views of an app's most important data and functionality that is accessible right from the user's home screen.
  • 4. Usage Examples of App Widgets • People can drop widgets onto their home screen and interact. • Widgets can provide a quick glimpse into fully featured apps, such as showing upcoming calendar events, or viewing details about a song playing in the background. • Users can also interact with your app through the widget, for example pausing or switching music tracks.
  • 5. AppWidget Framework • AppWidgetProviderInfo object > Describes the metadata for an App Widget, such as the App Widget's layout, update frequency, and the AppWidgetProvider class. > This should be defined in XML.
  • 6. AppWidget Framework • AppWidgetProvider class > Defines the basic methods that allow you to programmatically interface with the App Widget, based on broadcast events. (AppWidgetProvider class is a child class of BroadcastReceiver class.) > Through it, you will receive broadcasts when the App Widget is updated, enabled, disabled and deleted.
  • 7. AppWidget Framework(cont..) • View layout > Defines the initial layout for the App Widget, defined in XML. • Additionally, you can implement an App Widget configuration Activity.
  • 8. Steps for Building an App Widget Declare an AppWidgetProvider in the Manifest file Create the AppWidgetProviderInfo Metadata XML file Create the App Widget Layout XML file Write the AppWidgetProvider Class
  • 9. Declare AppWidgetProvider in Manifest • The <receiver> element requires the android:name attribute, which specifies the AppWidgetProvider • The <intent-filter> element must include an <action> element with the android:name attribute. This attribute specifies that the AppWidgetProvider accepts the ACTION_APPWIDGET_UPDATE broadcast. • The <meta-data> element specifies the location
  • 10. Create AppWidgetProviderInfo Metadata • Define the AppWidgetProviderInfo object in an XML resource using a single <appwidget-provider> element and save it in the project's res/xml/ folder. > This file is referenced from the manifest file • Defines the essential qualities of an App Widget, such as its minimum layout dimensions, its initial layout resource, how often to update the AppWidget, and (optionally) a configuration Activity to launch at create time.
  • 11. Create App Widget Layout • App Widget layouts are based on RemoteViews, which do not support every kind of layout or view widget. • A RemoteViews object (and, consequently, an App Widget) can support the following layouts and Widget classes
  • 12. Write AppWidgetProvider Class The AppWidgetProvider class extends BroadcastReceiver as a convenience class to handle the App Widget broadcasts • Methods to override > onUpdate(Context, AppWidgetManager, int[]) - called when each App Widget is added to a host (unless you use a configuration Activity), Typically the only method that needs to be present > onDeleted(Context, int[]) > onEnabled(Context) >onDisabled(Context) > onReceive(Context, Intent)
  • 13. Why App Widget Configuration Activity? • If you would like the user to configure settings when he or she adds a new App Widget, you can create an App Widget configuration Activity. • This Activity will be automatically launched by the App Widget host and allows the user to configure available settings for the App Widget at create-time, such as the App Widget colour, size, update period or other functionality settings.
  • 14. Declare it in Manifest File • The configuration Activity should be declared as a normal Activity in the Android manifest file. • However, it will be launched by the App Widget host with the ACTION_APPWIDGET_CONFIGURE action, so the Activity needs to accept this Intent <activity android:name=".ExampleAppWidgetConfigure"> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_CONFI GURE" /> </intent-filter> </activity>
  • 15. Declare it in Metadata Config file • Also, the Activity must be declared in the AppWidgetProviderInfo XML file, with the android:configure attribute <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" ... android:configure="com.example.android.ExampleAppWidgetC onfigure" ... > </appwidget-provider>