SlideShare a Scribd company logo
Data Transfer between
Activities & Databases
Lecturer Faiz Ur Rehman
University of Mianwali
Intent
• Android uses Intent for communicating between the components of
an Application and also from one application to another application.
• Intent are the objects which is used in android for passing the
information among Activities in an Application and from one app to
another also. Intent are used for communicating between the
Application components and it also provides the connectivity
between two apps
Example
Intent intent = new Intent(getApplicationContext(), SecondActivity.class);
startActivity(intent);
getApplicationContext() returns the context for your foreground activity.
Android intents are mainly used to:
•Start the service
•Launch an activity
•Display a web page
•Display a list of contacts
•Broadcast a message
•Dial a phone call etc.
Types of Intent
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Explicit Intent:
• Explicit Intents are used to connect the application internally.
• Explicit Intent work internally within an application to perform
navigation and data transfer.
• Example
Intent intent = new Intent(getApplicationContext(), SecondActivity.class);
startActivity(intent);
Implicit Intent:
• In Implicit Intents we do need to specify the name of the component.
• We just specify the Action which has to be performed and further this
action is handled by the component of another application.
• The basic example of implicit Intent is to open any web page
• Example
Intent intentObj = new Intent(Intent.ACTION_VIEW);
intentObj.setData(Uri.parse("https://www.abhiandroid.com"));
startActivity(intentObj);
Intent Uses in android:
1. Intent for an Activity:
• Every screen in Android application represents an activity. To start a
new activity you need to pass an Intent object to startActivity()
method. This Intent object helps to start a new activity and passing
data to the second activity.
2. Intent for Services:
• Services work in background of an Android application and it does not
require any user Interface. Intents could be used to start a Service
that performs one-time task
• (for example: Downloading some file)
3. Intent for Broadcast Receivers:
• There are various message that an app receives, these messages are
called as Broadcast Receivers. (For example, a broadcast message
could be initiated to intimate that the file downloading is completed
and ready to use). Android system initiates some broadcast message
on several events, such as System Reboot, Low Battery warning
message etc.
4. Display a list of contacts
5. Dial a phone call etc.
Intent Filter:
• decide the behavior of an intent.
• -Intent about the navigation of one activity to another, that can be
achieve by declaring intent filter.
• -We can declare an Intent Filter for an Activity in manifest file.
• - Intent filters specify the type of intents that an Activity, service or
Broadcast receiver can respond to.
Syntax of Intent Filters:
• <activity android:name=".MainActivity">
• <intent-filter
• android:icon="@drawable/icon" android:label="@string/label" >
• <action android:name="android.intent.action.MAIN" />
• <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
• </activity>
What are icons and labels
• icon: This is displayed as icon for activity. You can check or save png
image of name icon in drawable folder.
android:icon="@drawable/icon"
• • label: The label / title that appears at top in Toolbar of that
particular Activity. You can check or edit label name by opening String
XML file present inside Values folder
android:label = "@string/label“ or android:label = "New Activity“
Just like icon attribute, if you have not declared any label for your
activity then it will be same as your parent activity
• Elements In Intent Filter:
• There are following three elements in an intent filter:
• 1.Action
• 2.Data
• 3.Category
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Action
Examples
Data
Data Transfer between Activities & Databases
Activity Lifecycle:
• Activity is a screen that user interact with. Every Activity in android
has lifecycle like created, started, resumed, paused, stopped or
destroyed. These different states are known as Activity Lifecycle.
• onCreate() – Called when the activity is first created
• onStart() – Called just after it’s creation or by restart method after
onStop(). Here Activity start becoming visible to user
• onResume() – Called when Activity is visible to user and user can interact
with it .
• onPause() – Called when Activity content is not visible because user
resume previous activity.
• onStop() – Called when activity is not visible to user because some other
activity takes place of it
• onRestart() – Called when user comes on screen or resume the activity
which was stopped
• onDestroy – Called when Activity is not in background
Data Transfer between Activities & Databases
Broadcast Receiver
• Broadcast Receiver is a component which will allow android system or
other apps to deliver events to the app like sending a low battery
message or screen turned off message to the app. The apps can also
initiate broadcasts to let other apps know that required data available
in a device to use it.
• Generally, we use Intents to deliver broadcast events to other apps
and Broadcast Receivers use status bar notifications to let user know
that broadcast event occurs.
• is implemented as a subclass of Broadcast Receiver and each
broadcast is delivered as an Intent object.
Two important steps to make
BroadcastReceiver:
• Registering Broadcast Receiver
• • Creating the Broadcast Receiver
• A broadcast receiver is implemented as a subclass of BroadcastReceiver
class and overriding the onReceive() method where each message is
received as a Intent object parameter.
• Example-
public class MyReceiver extends BroadcastReceiver
{
public void onReceive(Context context, Intent intent)
{
Toast.makeText(context, "Intent Detected.",
Toast.LENGTH_LONG).show(); } }
System generated events are:
• android.intent.action.BATTERY_CHANGED
• • android.intent.action.BATTERY_LOW
• • android.intent.action.BATTERY_OKAY
• • android.intent.action.BOOT_COMPLETED
• • android.intent.action.BUG_REPORT
• • android.intent.action.CALL
• • android.intent.action.CALL_BUTTON
• • android.intent.action.DATE_CHANGED
• • android.intent.action.REBOOT
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Create Button click Event
Registered this button to event
Go to your xml file
Create intent instance , set action , set flag,
send intent
Create another app for Receiving
Receiver app is not registered yet
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
‘’’’’’’’’’’’’’’’’’’’’’’
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Content Provider:
• Content Provider will act as a central repository to store the applications
data in one place and make that data available for different applications to
access whenever it’s required.
• the Content Provider is a part of an android application and it will act as
more like relational database to store the app data. We can perform a
multiple operations like insert, update, delete and edit on the data stored
in content provider using insert(), update(), delete() and query() methods.
• content provider is having different ways to store app data. The app data
can be stored in a SQLite database or in files or even over a network based
on our requirements. By using content providers we can manage data such
as audio, video, images and personal contact information.
Data Transfer between Activities & Databases
• ContentResolverTo access a data from content provider, we need to use Content Resolver
• Cursor Loader is used to run the query asynchronously in background
• Content Provider receive a data requests from client, performs the requested actions
(create, update, delete, retrieve) and return the result.
• Content URIs: To query a content provider, you specify the query string in the form of a
URI which has following format −
content://authority/path
content:// - The string content:// is always present in the URI
authority - It represents the name of content provider
path - It represents the table’s path.
The Content Resolver object use the URI’s authority to find the appropriate provider and
send the query objects to the correct provider. After that Content Provider uses the path of
content URI to choose the right table to access.
Working
To create a content provider in android applications we
should follow below steps.
• 1. We need to create a content provider class that extends the
ContentProvider base class.
• 2. We need to define our content provider URI to access the content.
• 3. The ContentProvider class defines a six abstract methods (insert(),
update(), delete(), query(), getType()) which we need to implement all
these methods as a part of our subclass.
• 4. We need to register our content provider in AndroidManifest.xml
using tag.
Methods
• query() - It receives a request from the client. By using arguments it will get a data
from requested table and return the data as a Cursor object.
• insert() - This method will insert a new row into our content provider and it will
return the content URI for newly inserted row.
• update() - This method will update an existing rows in our content provider and it
return the number of rows updated.
• delete() - This method will delete the rows in our content provider and it return
the number of rows deleted.
• getType() - This method will return the MIME type of data to given content URI.
• onCreate() - This method will initialize our content provider. The android system
will call
• this method immediately after it creates our provider.
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases
Data Transfer between Activities & Databases

More Related Content

Similar to Data Transfer between Activities & Databases (20)

PDF
Android Development Tutorial
Germán Bringas
 
PPT
Intent, Service and BroadcastReciver (2).ppt
BirukMarkos
 
DOCX
Using intents in android
Oum Saokosal
 
PDF
Advance Android application development workshop day 3
cresco
 
PPT
Android lifecycle
Kumar
 
PDF
Ch5 intent broadcast receivers adapters and internet
Shih-Hsiang Lin
 
PPTX
02. Android application development_Lec2.pptx
anychowdhury2
 
DOCX
Android intents in android application-chapter7
Dr. Ramkumar Lakshminarayanan
 
PPTX
Unit - III.pptx
VaishnaviGaikwad67
 
ODP
Ppt 2 android_basics
Headerlabs Infotech Pvt. Ltd.
 
PPTX
Introduction to Android Development
Owain Lewis
 
PPTX
Intents in Mobile Application Development.pptx
AbinayaDeviC
 
PPTX
Android intents, notification and broadcast recievers
Utkarsh Mankad
 
PPTX
Hello android world
eleksdev
 
PPT
ANDROID
DrMeftahZouai
 
DOCX
Android building blocks and application life cycle-chapter3
Dr. Ramkumar Lakshminarayanan
 
PDF
04 programmation mobile - android - (db, receivers, services...)
TECOS
 
PPTX
Android application development
Md. Mujahid Islam
 
PPTX
Android activity intentsq
perpetrotech
 
PPTX
Android activity intents
perpetrotech
 
Android Development Tutorial
Germán Bringas
 
Intent, Service and BroadcastReciver (2).ppt
BirukMarkos
 
Using intents in android
Oum Saokosal
 
Advance Android application development workshop day 3
cresco
 
Android lifecycle
Kumar
 
Ch5 intent broadcast receivers adapters and internet
Shih-Hsiang Lin
 
02. Android application development_Lec2.pptx
anychowdhury2
 
Android intents in android application-chapter7
Dr. Ramkumar Lakshminarayanan
 
Unit - III.pptx
VaishnaviGaikwad67
 
Ppt 2 android_basics
Headerlabs Infotech Pvt. Ltd.
 
Introduction to Android Development
Owain Lewis
 
Intents in Mobile Application Development.pptx
AbinayaDeviC
 
Android intents, notification and broadcast recievers
Utkarsh Mankad
 
Hello android world
eleksdev
 
ANDROID
DrMeftahZouai
 
Android building blocks and application life cycle-chapter3
Dr. Ramkumar Lakshminarayanan
 
04 programmation mobile - android - (db, receivers, services...)
TECOS
 
Android application development
Md. Mujahid Islam
 
Android activity intentsq
perpetrotech
 
Android activity intents
perpetrotech
 

More from Muhammad Sajid (20)

PPTX
eCommerce App Lecture
Muhammad Sajid
 
PPTX
Characteristics of enterprise application software
Muhammad Sajid
 
PPTX
The Checkout and Order Process
Muhammad Sajid
 
PPTX
The Shopping Basket
Muhammad Sajid
 
PPTX
Enhancing the User Experience
Muhammad Sajid
 
PPTX
Products and Categories
Muhammad Sajid
 
PPTX
E-Commerce Applications Development
Muhammad Sajid
 
PPTX
E-Commerce Applications Development
Muhammad Sajid
 
PPTX
Data Transfer between Activities & Databases
Muhammad Sajid
 
PDF
Mobile Application Development
Muhammad Sajid
 
PDF
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
PDF
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
PDF
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
PDF
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
PPTX
Your first Android App
Muhammad Sajid
 
PPTX
Group Aided Decision making revised
Muhammad Sajid
 
PDF
Pakistan Studies notes
Muhammad Sajid
 
PDF
Components of Computing Game
Muhammad Sajid
 
PDF
Design Elements of Computing Game
Muhammad Sajid
 
PDF
Nature of Game
Muhammad Sajid
 
eCommerce App Lecture
Muhammad Sajid
 
Characteristics of enterprise application software
Muhammad Sajid
 
The Checkout and Order Process
Muhammad Sajid
 
The Shopping Basket
Muhammad Sajid
 
Enhancing the User Experience
Muhammad Sajid
 
Products and Categories
Muhammad Sajid
 
E-Commerce Applications Development
Muhammad Sajid
 
E-Commerce Applications Development
Muhammad Sajid
 
Data Transfer between Activities & Databases
Muhammad Sajid
 
Mobile Application Development
Muhammad Sajid
 
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
MOBILE APPLICATION DEVELOPMENT
Muhammad Sajid
 
Your first Android App
Muhammad Sajid
 
Group Aided Decision making revised
Muhammad Sajid
 
Pakistan Studies notes
Muhammad Sajid
 
Components of Computing Game
Muhammad Sajid
 
Design Elements of Computing Game
Muhammad Sajid
 
Nature of Game
Muhammad Sajid
 
Ad

Recently uploaded (20)

PDF
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PDF
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
PDF
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PDF
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
PDF
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
PDF
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
PPTX
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
PPTX
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
PDF
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
PPSX
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
LAW OF CONTRACT (5 YEAR LLB & UNITARY LLB )- MODULE - 1.& 2 - LEARN THROUGH P...
APARNA T SHAIL KUMAR
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
LAW OF CONTRACT ( 5 YEAR LLB & UNITARY LLB)- MODULE-3 - LEARN THROUGH PICTURE
APARNA T SHAIL KUMAR
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
Chapter-V-DED-Entrepreneurship: Institutions Facilitating Entrepreneurship
Dayanand Huded
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
0725.WHITEPAPER-UNIQUEWAYSOFPROTOTYPINGANDUXNOW.pdf
Thomas GIRARD, MA, CDP
 
People & Earth's Ecosystem -Lesson 2: People & Population
marvinnbustamante1
 
The dynastic history of the Chahmana.pdf
PrachiSontakke5
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
Stereochemistry-Optical Isomerism in organic compoundsptx
Tarannum Nadaf-Mansuri
 
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
HEALTH ASSESSMENT (Community Health Nursing) - GNM 1st Year
Priyanshu Anand
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
Ad

Data Transfer between Activities & Databases

  • 1. Data Transfer between Activities & Databases Lecturer Faiz Ur Rehman University of Mianwali
  • 2. Intent • Android uses Intent for communicating between the components of an Application and also from one application to another application. • Intent are the objects which is used in android for passing the information among Activities in an Application and from one app to another also. Intent are used for communicating between the Application components and it also provides the connectivity between two apps
  • 3. Example Intent intent = new Intent(getApplicationContext(), SecondActivity.class); startActivity(intent); getApplicationContext() returns the context for your foreground activity. Android intents are mainly used to: •Start the service •Launch an activity •Display a web page •Display a list of contacts •Broadcast a message •Dial a phone call etc.
  • 7. Explicit Intent: • Explicit Intents are used to connect the application internally. • Explicit Intent work internally within an application to perform navigation and data transfer. • Example Intent intent = new Intent(getApplicationContext(), SecondActivity.class); startActivity(intent);
  • 8. Implicit Intent: • In Implicit Intents we do need to specify the name of the component. • We just specify the Action which has to be performed and further this action is handled by the component of another application. • The basic example of implicit Intent is to open any web page • Example Intent intentObj = new Intent(Intent.ACTION_VIEW); intentObj.setData(Uri.parse("https://www.abhiandroid.com")); startActivity(intentObj);
  • 9. Intent Uses in android: 1. Intent for an Activity: • Every screen in Android application represents an activity. To start a new activity you need to pass an Intent object to startActivity() method. This Intent object helps to start a new activity and passing data to the second activity.
  • 10. 2. Intent for Services: • Services work in background of an Android application and it does not require any user Interface. Intents could be used to start a Service that performs one-time task • (for example: Downloading some file)
  • 11. 3. Intent for Broadcast Receivers: • There are various message that an app receives, these messages are called as Broadcast Receivers. (For example, a broadcast message could be initiated to intimate that the file downloading is completed and ready to use). Android system initiates some broadcast message on several events, such as System Reboot, Low Battery warning message etc. 4. Display a list of contacts 5. Dial a phone call etc.
  • 12. Intent Filter: • decide the behavior of an intent. • -Intent about the navigation of one activity to another, that can be achieve by declaring intent filter. • -We can declare an Intent Filter for an Activity in manifest file. • - Intent filters specify the type of intents that an Activity, service or Broadcast receiver can respond to.
  • 13. Syntax of Intent Filters: • <activity android:name=".MainActivity"> • <intent-filter • android:icon="@drawable/icon" android:label="@string/label" > • <action android:name="android.intent.action.MAIN" /> • <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> • </activity>
  • 14. What are icons and labels • icon: This is displayed as icon for activity. You can check or save png image of name icon in drawable folder. android:icon="@drawable/icon" • • label: The label / title that appears at top in Toolbar of that particular Activity. You can check or edit label name by opening String XML file present inside Values folder android:label = "@string/label“ or android:label = "New Activity“ Just like icon attribute, if you have not declared any label for your activity then it will be same as your parent activity
  • 15. • Elements In Intent Filter: • There are following three elements in an intent filter: • 1.Action • 2.Data • 3.Category
  • 20. Data
  • 22. Activity Lifecycle: • Activity is a screen that user interact with. Every Activity in android has lifecycle like created, started, resumed, paused, stopped or destroyed. These different states are known as Activity Lifecycle.
  • 23. • onCreate() – Called when the activity is first created • onStart() – Called just after it’s creation or by restart method after onStop(). Here Activity start becoming visible to user • onResume() – Called when Activity is visible to user and user can interact with it . • onPause() – Called when Activity content is not visible because user resume previous activity. • onStop() – Called when activity is not visible to user because some other activity takes place of it • onRestart() – Called when user comes on screen or resume the activity which was stopped • onDestroy – Called when Activity is not in background
  • 25. Broadcast Receiver • Broadcast Receiver is a component which will allow android system or other apps to deliver events to the app like sending a low battery message or screen turned off message to the app. The apps can also initiate broadcasts to let other apps know that required data available in a device to use it. • Generally, we use Intents to deliver broadcast events to other apps and Broadcast Receivers use status bar notifications to let user know that broadcast event occurs. • is implemented as a subclass of Broadcast Receiver and each broadcast is delivered as an Intent object.
  • 26. Two important steps to make BroadcastReceiver: • Registering Broadcast Receiver • • Creating the Broadcast Receiver
  • 27. • A broadcast receiver is implemented as a subclass of BroadcastReceiver class and overriding the onReceive() method where each message is received as a Intent object parameter. • Example- public class MyReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { Toast.makeText(context, "Intent Detected.", Toast.LENGTH_LONG).show(); } }
  • 28. System generated events are: • android.intent.action.BATTERY_CHANGED • • android.intent.action.BATTERY_LOW • • android.intent.action.BATTERY_OKAY • • android.intent.action.BOOT_COMPLETED • • android.intent.action.BUG_REPORT • • android.intent.action.CALL • • android.intent.action.CALL_BUTTON • • android.intent.action.DATE_CHANGED • • android.intent.action.REBOOT
  • 33. Registered this button to event Go to your xml file
  • 34. Create intent instance , set action , set flag, send intent
  • 35. Create another app for Receiving
  • 36. Receiver app is not registered yet
  • 47. Content Provider: • Content Provider will act as a central repository to store the applications data in one place and make that data available for different applications to access whenever it’s required. • the Content Provider is a part of an android application and it will act as more like relational database to store the app data. We can perform a multiple operations like insert, update, delete and edit on the data stored in content provider using insert(), update(), delete() and query() methods. • content provider is having different ways to store app data. The app data can be stored in a SQLite database or in files or even over a network based on our requirements. By using content providers we can manage data such as audio, video, images and personal contact information.
  • 49. • ContentResolverTo access a data from content provider, we need to use Content Resolver • Cursor Loader is used to run the query asynchronously in background • Content Provider receive a data requests from client, performs the requested actions (create, update, delete, retrieve) and return the result. • Content URIs: To query a content provider, you specify the query string in the form of a URI which has following format − content://authority/path content:// - The string content:// is always present in the URI authority - It represents the name of content provider path - It represents the table’s path. The Content Resolver object use the URI’s authority to find the appropriate provider and send the query objects to the correct provider. After that Content Provider uses the path of content URI to choose the right table to access.
  • 51. To create a content provider in android applications we should follow below steps. • 1. We need to create a content provider class that extends the ContentProvider base class. • 2. We need to define our content provider URI to access the content. • 3. The ContentProvider class defines a six abstract methods (insert(), update(), delete(), query(), getType()) which we need to implement all these methods as a part of our subclass. • 4. We need to register our content provider in AndroidManifest.xml using tag.
  • 52. Methods • query() - It receives a request from the client. By using arguments it will get a data from requested table and return the data as a Cursor object. • insert() - This method will insert a new row into our content provider and it will return the content URI for newly inserted row. • update() - This method will update an existing rows in our content provider and it return the number of rows updated. • delete() - This method will delete the rows in our content provider and it return the number of rows deleted. • getType() - This method will return the MIME type of data to given content URI. • onCreate() - This method will initialize our content provider. The android system will call • this method immediately after it creates our provider.