Top "Android-contentresolver" questions

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

Android Gallery on Android 4.4 (KitKat) returns different URI for Intent.ACTION_GET_CONTENT

Before KitKat (or before the new Gallery) the Intent.ACTION_GET_CONTENT returned a URI like this content://media/external/…

android android-intent android-gallery android-contentresolver
Convert content:// URI to actual path in Android 4.4

I tried a solution (see below) that works fine, except in Android 4.4 the call to startActivityForResult() brings up an activity …

android filepath android-contentresolver
what are uri, contentValues

Can anyone explain me about each term that I have used in working with calendar events? Uri event_uri = Uri.…

android uri android-contentresolver
What is difference between contentprovider and contentResolver in android

What is the difference between ContentProviders and ContentResolver? I do not want for the SQLite database. I am developing an …

android android-contentprovider android-contentresolver
Android: Distinct and GroupBy in ContentResolver

What would be the correct way to add DISTINCT and/or GROUPBY to ContentResolver-based queries? Right now I have to …

android distinct group-by android-contentresolver
List all camera images in Android

How do you get a list of all camera images of an Android device? Is it through the MediaStore? How?

android camera gallery mediastore android-contentresolver
Failed to find provider info error

I am trying to have a contentprovider , but I am having trouble because I am getting an error of "Failed …

android android-contentprovider android-contentresolver
How does getContentResolver() work?

I watched a course about ContentProvider on the Internet demonstrating how to define and use a ContentProvider. I was confused …

android android-contentresolver
How can I call getContentResolver in android?

I'm writing a library class to encapsulate some of my logic in my first Android app. One of the functions …

android android-context android-contentresolver
Get file path from URI

I have Uri for Image file. I use this code for gets file path from Uri: public String getRealPathFromURI(Uri …

android android-contentresolver