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

learn more… | top users | synonyms

0
votes
1answer
17 views

How do I call custom method in ContentProvider through ContentResolver and access Bundle afterwards?

I have a custom method save() in my custom ContentProvider class MyContentProvider which I want to call through the ContentResolver. The objective is to pass an POJO as a Bundle through to ...
0
votes
1answer
23 views

Android content provider, update with SUM

How can I use this query with Android content provider? update tblTot set vMax = vMax + 15 where _id = 1; Where vMax is a column of tblTot table. I have tried to do this Uri totUri = ...
0
votes
1answer
12 views

CursorLoader change cursor() doesn't refresh listview

I use approach resuest to server - listView - content provider in many projects and it works well. However I faced with really strange issue - notifyChange(uri, null) doesn't refresh data in listview ...
0
votes
0answers
12 views

Link application with contact

Is it possible to link some application with contact? I have tried this tutorial - http://www.c99.org/2010/01/23/writing-an-android-sync-provider-part-2/ but seems this isn't what i'm seeking. If i ...
-1
votes
1answer
16 views

Error in Query method of a Content Provider

I am trying to use a Content Provider but I have the error: The method query(Uri, String[], String, String[], String) in the type MCProvider is not applicable for the arguments (Uri, String[], ...
0
votes
1answer
33 views

Android - How to share data in a secure way between an unknow number of applications?

I'm tring to figure out how to share data in a secure way between an unknow number of applications, each application has a different certification. In my opinion, content provider is the best way to ...
0
votes
0answers
7 views

ContentProvider calls atomic? Save on onPause, load in OnActivityCreated, old data

I have a fragment that has a listview. In onPause I'm saving off the position in the listview in a ContentProvider. The same fragment upon onCreateActivity uses a loader to grab that object and ...
0
votes
1answer
11 views

Loop through content resolver columns when we dont know all the columns' datatype

I want to loop thru all the columns of content resolver to print the values. Is it possible when I dont know the data type of each column? I did something like below, which fails for Null Pointer ...
0
votes
0answers
11 views

My Content Provider to Rest with Broadcast is having Infinite loop

I watched the virgil's android rest google io video and trying to implement it. In short this is the problem but please read on for details. ContentResolver query -> Content Provider Query -> Start ...
0
votes
1answer
31 views

Is it okay to call finish() directly after invoking Provider methods?

Setup: FirstActivity opens SecondActivity, SecondActivity asks user to select images, give them titles; when user is finished they click "Save" button that invokes method saveToDatabase which calls ...
0
votes
1answer
12 views

1st Activity's listview not updated after 2nd activity inserts into database via ContentProvider; onLoadFinished not called

Problem: upon returning from a 2nd activity the first activity's listview does not reflect database changes made by the 2nd activity. If I make a trivial change to code (to make emulator happy) and ...
1
vote
0answers
45 views
+50

Android History Content Observer

I implemented content observer of history but it is behaving weird.For every change in history its onChange() function runs 3-5 times. static class BrowserOberser extends ContentObserver { public ...
0
votes
1answer
18 views

Confused about Content provider contenturi and content provider authorities tag

from google example below As an example of designing and coding content URI handling, consider a provider with the authority com.example.app.provider that recognizes the following content URIs ...
0
votes
1answer
23 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
2answers
15 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
46 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
35 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
38 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
25 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
14 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
48 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
27 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
50 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
25 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
28 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
43 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
22 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
37 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
29 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
23 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
20 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
90 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
66 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
41 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
29 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
36 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
22 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
60 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
32 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
62 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
59 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
29 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
47 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
382 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
67 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
48 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
52 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 ...

1 2 3 4 5 24