Top "Android-contentresolver" questions

A ContentResolver represents the connection between an app requesting data and the target ContentProvider.

Calling delete method in custom content provider

I am learning Android and I am stuck on an issue involving calling a custom content provider. I have been …

android android-contentprovider android-contentresolver onlongclicklistener
Display the Contacts in sorting order ContactsContract.Contacts of Content Resolver

My intention is to display the contacts in sorting order using content resolver in android. For that I'm writing: Cursor …

android android-contentresolver
Get Album Art With Album Name Android

I want to display album art with album name in listview. But i am not getting the way to display …

android android-mediaplayer mediastore android-contentresolver albumart
ContentResolver - how to get file name from Uri

I call startActivityForResult with Intent ACTION_GET_CONTENT. Some app returns me data with this Uri: content://media/external/images/…

android android-contentresolver
Insertion of thousands of contact entries using applyBatch is slow

I'm developing an application where I need to insert lots of Contact entries. At the current time approx 600 contacts with …

android android-contentprovider android-contentresolver
Android: SQLite transactions when using ContentResolver

The goal: refresh database from XML data The process: Start transaction Delete all existing rows from the tables Per each …

android sqlite transactions android-contentprovider android-contentresolver
using ContentProviderClient vs ContentResolver to access content provider

The documentation on Android content providers describes using a ContentResolver, obtained from getContentResolver(), to access the content. However there is …

android android-contentprovider android-contentresolver
`getContentResolver().openInputStream(uri)` throws FileNotFoundException

I use this intent to let user select a photo: Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.…

android image android-contentresolver