Top "Android-contentprovider" questions

Content providers are one of the primary building blocks of Android applications, providing content to applications.

Room persistence library and Content provider

Last Couple of days I have been spending times on learning new Android Architecture Components . After following up some blog …

android architecture android-contentprovider android-room
Android: access SQLite database via Content Provider or implement DAO?

I'm wondering which is the best approach to access my application database: use a Content Provider, or implement my DAO …

android database sqlite android-contentprovider dao
How do I get the _count in my content provider?

What should I do to get my content provider to return the _count column with the count of records? The …

android count android-contentprovider
Android: How to get a content:// URI for a file in the external storage PUBLIC directory

I've followed this Google tutorial to start an intent to capture an image with new Intent(MediaStore.ACTION_IMAGE_CAPTURE). …

android android-intent android-contentprovider android-7.0-nougat
android duplicate provider authority

I have had users complaining of a "duplicate provider authority" error when trying to install my android application. I initially …

android android-contentprovider authority
java.lang.SecurityException: Permission Denial: opening provider

I start image picker intent using: final Intent pickIntent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI); …

android android-contentprovider android-permissions permission-denied
How to specify the sort order for the query to a content provider

I am trying to load all items from a Sqlite Table in Android and want to order the result. How …

android android-sqlite android-contentprovider android-cursorloader
Android RecyclerView + CursorLoader + ContentProvider + "Load More"

I have created one Activity in that I am implementing CursorLoader for load data from Database. I have done that …

android android-contentprovider android-cursoradapter android-cursor android-cursorloader
Android Contacts provider get only phone contacts with all emails

I need to get all phone contacts and their email address and photo uri: This is what am doing: private …

android performance android-contentprovider android-contacts android-contentresolver