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

learn more… | top users | synonyms

0
votes
1answer
16 views

Syncronize access to Content Provider

In my app, I have a SyncAdapter which uses a ContentProvider to put data into the SQLiteDatabase. Everything was working perfectly for months. After I have added a second way to update the ...
0
votes
1answer
11 views

Media Gallery ContentProvider

My app will display the complete list of images in my custom gallery .For this, I'm using ContentProvider of Image Thumbnails. Upon selecting the thumbnail's I need to display the actual ...
0
votes
0answers
40 views

column '0' does not exist for ContentProvider SQLite

I am getting the error shown below, how do I fix this problem? FATAL EXCEPTION: main java.lang.IllegalArgumentException: column '0' does not exist ...
0
votes
2answers
31 views

SQLiteException: no such column: _id: for ContentProvider

I declared the _ID auto increment column in the ContentProvider running on SQLite, and yet I get the following "no such column: _id" error message in the stacktrace, how do I fix this error? FATAL ...
0
votes
1answer
26 views

nullPointerException on SQLiteDatabase db = dbHelper.getWritableDatabase(); insert method of ContentProvider

I got a nullPointerException on the line, listView.setAdapter(adapter); in the main activity class, cannot figure out what is causing it, any ideas? onCreate method of mainActivity class public ...
0
votes
1answer
24 views

App reads wrong sms

I want to read received text messages ( SMS ), as soon as they arrive (on received broadcast - android.provider.Telephony.SMS_RECEIVED) . I'm actually using following code, but it only reads message ...
0
votes
2answers
21 views

Unable to access Android content provider

I can see in LogCat that ActivityManager is reporting something about a particular content provider. I use the following code to try to access that content provider in order to learn more about it: ...
0
votes
0answers
10 views

No repeated contact from content://sms/inbox

I'm a newbie in Android development. I'm doing a simple application to read the text messages of the phone. I know how many problems there are around the content provider content://sms but... It's too ...
0
votes
2answers
41 views

calling onCreate method from inside another method

I have never seen anyone explicitly call one of the system callback methods like onCreate() or onDestroy() from inside another method. It just looks wrong. I thought I saw this in some example and I ...
2
votes
1answer
26 views

android: questions about ContentProvider

As I understand it, ContentProvider - is the data on the global level of the whole device? The questions: 1) Is it possible to develop and distribute only ContentProvider (no Activity, ie not as a ...
0
votes
1answer
21 views

ContentProvider database variables, where to put them?

Consider: public static final String NOTE_ID = "_id"; public static final String TITLE = "title"; public static final String TEXT = "text"; 3 columns in my sqlite database shown above to be used in ...
0
votes
1answer
41 views

unsupported uri when accessing content provider

EDIT I get a java.lang.IllegalArgumentException: Unsupported URI: content://com.example.locationreminder.remindercontentprovider/items Shouldn't I be able to pick whatever name I want for the ...
0
votes
0answers
21 views

BitmapFactory.decodeStream always return null from ContentProvider

I have an Android app that read an epub. When my application read an epub from the SD card. Everything looks fine. But when I read the file from a ContentProvider (with the openFile) it doesn't work. ...
0
votes
0answers
24 views

Getting rid of “Attending?” in Android calendar event, using the Calendar API

I'm creating a local calendar on an Android device, and inserting events into this. Here is my code (using dummy data for now): public static Uri createCalendarWithName(Context ctx, String ...
0
votes
1answer
34 views

Update contact with multiple phone numbers

I have this code public void updateContact (String contactId, String newNumber) {ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); String ...
0
votes
0answers
15 views

Android datamodel with patientdata

I've started developing an app for an examination at our department at the Hospital where I work. I would like to utilize some of the functions that a ContentProvider gives me, but after I started ...
0
votes
1answer
19 views

BaseColumns interface of a ContentProvider, what to put in it?

When looking at examples of ContentProviders most of them included a BaseColumns interface. When comparing the different implementations, each one has varied amounts of methods inside. What are the ...
0
votes
2answers
36 views

Why Illegal Argument Exception?

Dont Know why getting Illgal Argument Exception is crashing the android code. Any help will be appreciated.... protected void onCreate(Bundle savedInstanceState) { ...
1
vote
1answer
21 views

which is the correct table name for this content provider? Android

i have looked at many examples for content provider. and when the database is created the table name does not match. in the example below the table is declared as "Country" in the creation of the ...
0
votes
0answers
22 views

Deferred foreign key does not flush changes to database

In my android sqlite database, I enabled foreign keys and am setting them to be deferred using DEFERRABLE INITIALLY DEFERRED. The problem is that once I hit a SQLiteContraintException for any sort ...
0
votes
1answer
19 views

Count on custom ContentProvider

I have a ContentProvider working fine (query, delete, update, insert) for simple queries, has the following structure: public static class Promotion implements BaseColumns { private Promotion() ...
1
vote
0answers
84 views

Android CalendarContract, deleting a recurring event causes all events to disappear on calendar?

I have a sync adapter that handles syncing calendars and events. I am able to delete normal events just fine. But whenever I delete a recurring event, all the events on my calendar disappear. One ...
0
votes
1answer
58 views

Android ContentProvider SQLite : SQLiteMisuseException

I have a simple ContentProvider following the step from vogella.com with some changes because I'm using android-support-v4.jar I have a simple App Here i have three buttons and one ListFragment ...
1
vote
1answer
38 views

how to differentiate between 3gp audio and 3gp video

I am accessing the videos directly from content provider without storing it in my database. But it is giving me 3gp audio file along with other video and 3gp videos. how could i filter only the video ...
0
votes
0answers
22 views

get file system path for the contact photo in android

Hi I have a content uri which looks like content://com.android.contacts/contacts/550/photo. I need to obtain a handle to the physical file given this content uri. I looked at some of the sample ...
0
votes
0answers
30 views

search suggest query limit = 50 cursor does not work on text change

I want to take suggestions from my SQLite Database with content provider. Actually i m able to read database. But suggestions does not appear if i do not submit my query. I want to take suggestions ...
0
votes
0answers
18 views

content observer for Sms returning wrong info

I have a content observer which is not showing incoming sms and out going sms properly. sometime it showing incoming and also outgoing sms for two times but sometime it showing single time I don't ...
0
votes
2answers
56 views

Dynamically set the authority of a ContentProvider

Perhaps the title is a bit misleading. My problem is that I have an Android library project which is shared between two standard Android projects: one for a free version of the app and the other for a ...
0
votes
2answers
25 views

INSTALL FAILED CONFLICTING PROVIDER

I am experimenting with the NotesList sample program in the Android SDK. I've made a slight variation in the program, but when I install my edited version I keep getting the message ...
0
votes
1answer
55 views

content provider unknown uri

I am trying to access to sqlite content to take suggestion in searchview. I'm not able to establish connection between provider and sqlite database.I take illegalArgumentException, uknown uri. What ...
1
vote
1answer
50 views

Get name of contact by nickname in Android

I have some problem with Contact Provider. I have a nickname, which stored in string variable text. I want to get name and surname of user, which have some nickname. But it's something wrong with my ...
0
votes
1answer
28 views

An Optimization issue in Android

I have the code where I want catch all the contacts in the cellphone. It works perfectly but I'm having a problem performance . When I open the application a listview will be loaded with contacts ...
0
votes
2answers
46 views

Automatic Update TextView

I have an activity with a textview that shows different quotes every time the previous or backward button is pressed. It'd be really funny if I add 10000 quotes in the arrays.xml file and then pass it ...
1
vote
0answers
271 views

Android “No content provider found or permission revoke” with android 4

I have an android application that works perfectly on android 2-2 and 2-3. But when i try to install the application on android 4-0 or 4-2-2 i twice get the following error: No content provider found ...
0
votes
2answers
60 views

SQLite Database Error [FATAL EXCEPTION error ]

mp application crashes upon launch. I receive a " java.lang.RuntimeException: Unable to get provider" error. Im assuming this has to do with my sqlite DB since My contactprovider now hold the code to ...
-1
votes
0answers
45 views

how to connect suggestion provider to sqlite database [closed]

I want to take suggestions from server. I am very confused. As far as i understood i have to define a content provider. But i do not know how to connect provider to my sqlite database and show ...
0
votes
2answers
49 views

Open an at runtime decrypted file with a third party application without storing the decrypted data

In my application I need to pass a dynamically decrypted file to a third-party application without saving it to the device. Example: I have a self created encrypted file which contains both a pdf ...
0
votes
0answers
53 views

How to get google music local album artwork using a content provider?

I know it's not an officially supported feature but in my Android app I'd love to retrieve Google Music artwork. So far I've been able to retrieve the artist's name and album id via this content ...
0
votes
0answers
37 views

Cursor returns zero record when accessing log file of call of android but works fine with emulator

Here I am working with CallLogs.Call and trying to fetch call history from log files using contentResolver.query() and when I am executing it on emulator it displays the records but when running on ...
0
votes
0answers
40 views

onCreate() in ContentProvider is not being called

onCreate() method in ContentProvider is not being called. Though when I click on a button, it goes inside insert() method and returns java.lang.NullPointerException. In onCreate() method I have only ...
0
votes
2answers
38 views

How to force a content provider to reset when manually deleting database

In my app I have a ContentProvider attached to a table in a database with a CursorLoader that fills a ListView in one of my Activities. This table is filled empty by default and gets filled with user ...
4
votes
2answers
45 views

Android Fetch Contacts into the Application

I am trying to show a list of Contacts from the users phone in a List view inside the application. I am able to fetch the contacts but some of the Contacts will have mutiple cellphone numbers so i ...
0
votes
0answers
40 views

Failed to find provider info for com.talkingoa.coperator.prefs

copy program1 to paste program2 AndroidManifest.xml: program1: <provider android:name="com.coperator.service.PreferenceProvider" android:authorities="com.coperator.prefs" ...
0
votes
1answer
40 views

How to bring contacts up to send a text

I have an application that defines a word and then sends the definition via SMS. The problem is that the user has to type in a phone number. I was thinking that perhaps the app should bring up the ...
0
votes
0answers
47 views

how/where to call notifyDataSetChanged from another fragment

I have a fragment with a listview to show content of my list. I update and delete items in this list through another fragment - dialog fragment (using the content provider's delete and update methods) ...
3
votes
1answer
54 views

How to check if the word is already available in user dictionary?

I need the most simple and elegant way (having the word) to check whether the given word is already available in the user dictionary or not. Word frequency doesn't matter, locale does. Is there ...
0
votes
1answer
97 views

Adding a Calendar to a SyncAdapter Account for API 10 (2.3.3) to API (14)?

I have created a SyncAdapter along with authentication. Now that I am able to add a synced account to my device, I would like that account to be able to have Calendars associated to it. My ...
0
votes
0answers
170 views

SecurityException: Permission Denial. opening provider xxx from xxx that is not exported from uid 10027

I have a project A as library jar file, which contains a ContentProvider. Then I need to use it in project B. As declared in Manifest: <provider ...
0
votes
0answers
39 views

How to create common Content Provider for multiple applications

I have a number of android applications, I need a storage common to all these applications , but creation of common storage should be dynamically from the first app which uses/launches from ...
0
votes
0answers
38 views

Slow to call onLoadFinished

I'm using Loader and Content Provider to fill a listview with data from my database. My problem is that, if I use the line below in my Content Provider to get data from database, the query and ...

1 2 3 4 5 24