0 votes
in JQuery by
What is a ContentProvider in Android and what is it typically used for?

1 Answer

0 votes
by

A content provider manages access to a central repository of data. A provider is part of an Android application, which often provides its own UI for working with the data. However, content providers are primarily intended to be used by other applications, which access the provider using a provider client object.

Typically you work with content providers in one of two scenarios;

  • you may want to implement code to access an existing content provider in another application, or
  • you may want to create a new content provider in your application to share data with other applications.

Related questions

0 votes
asked Jun 23, 2020 in JQuery by AdilsonLima
0 votes
asked Jun 22, 2020 in JQuery by DavidAnderson
...