Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android Studio Cookbook

You're reading from  Android Studio Cookbook

Product type Book
Published in Oct 2015
Publisher
ISBN-13 9781785286186
Pages 232 pages
Edition 1st Edition
Languages
Author (1):
Mike van Drongelen Mike van Drongelen
Profile icon Mike van Drongelen
Toc

Content providers


Building a content provider is a really smart thing to do. The content provider API comes with an interesting feature that allows applications to observe changes in a data set.

Content providers connect data in one process with code running in another process, even between two completely different applications if you want. If you ever wrote code to pick an image from the Gallery app, you may have experienced this behavior. Some component manipulates the persistent dataset that other components depend upon. A content provider can use many different ways to store data, which can be stored in a database, in files, or even over a network.

Datasets are identified by unique URIs, so it is possible to ask for notifications if a certain URI is changed. Here is where the observer pattern comes in.

The observer pattern is a common software design pattern in which an object (the subject) has one or more dependents (the observers, also known as the listeners) that will automatically be...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}