Tagged Questions
In Android development, content providers store and retrieve data and make it accessible to all applications. They're the only way to share data across applications. Android ships with a number of content providers for common data types (audio, video, images, personal contact information, and so on).
19
votes
4answers
653 views
How to transfer files between Android applications running on the same device?
I am writing an Android application that interfaces with a RESTful service. This web service essentially fronts a file system, and provides metadata as well CRUD access to the files. My application ...
14
votes
3answers
967 views
Cursor Wrapping/Unwrapping in ContentProvider
I’m creating ContentProvider which is a proxy of another ContentProvider (for security issues and to give access to part of functionality of full app).
public class GFContactsProvider extends ...
11
votes
2answers
1k views
Android. Content provider or Database?
Since I've seen a presentation from Google IO I'm a bit confused in the question, if it's better to use content providers or databases. Or it makes no difference if I don't want to share any data with ...
11
votes
2answers
8k views
How to query Android MediaStore Content Provider, avoiding orphaned images?
I'm trying to provide an in-app Activity which displays thumbnails of photos in the
device's media store, and allow the user to select one. After the user makes a
selection, the application reads the ...
8
votes
2answers
284 views
Using @string for a authority in a ContentProvider
I have a ContentProvider in my manifest, when I define them fully with hardcoded strings it works. E.g.
<provider android:name="com.myprovider" android:authority="com.myprovider"/>
Works ...
8
votes
3answers
4k views
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 main element of parsed XML insert row into main table and get PK
Per each ...
7
votes
1answer
2k views
Difference between ContentObserver and DatasetObserver?
What is difference between ContentObserver and DatasetObserver?
When one or another should be used?
I get Cursor with single row. I want to be notified about data changes - eg. when row is updated.
...
6
votes
3answers
224 views
How to open attachment list of media?
In Android messaging, when click on attach it open the list of content provider like Camera, Gallery, Audio, Video etc. How to open the same list on button click?
Like this :
6
votes
1answer
959 views
Storing file in Android Database (Custom Content Provider) using _data field - v1.6
I have been battling with an issue in my Android app. I have been reading Android docs, my book on Android (Andriod Pro 2) and have looked at almost each and every example I could get my hands on but ...
6
votes
3answers
4k views
Best practices for exposing multiple tables using content providers in Android
I'm building an app where I have a table for events and a table for venues. I want to be able to grant other applications access to this data. I have a few questions related to best practices for this ...
6
votes
2answers
12k views
Android - Querying the SMS ContentProvider?
I currently register a content observer on the following URI "content://sms/" to listen out for incoming and outgoing messages being sent.
This seems to work ok and I have also tried deleting from ...
5
votes
3answers
255 views
android sqlite “database is locked” errors despite use of content provider and sequential database access
I have an app (Android 2.2 Google API Level 8) that has multiple activities pulling data from a content provider (SELECT only database access).
It also has a service with a central blocking task queue ...
5
votes
2answers
177 views
Add several contacts in batch
I am perfectly able to add contacts one by one with following code:
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
...
5
votes
4answers
276 views
Serving up Images through a Content Provider in Android
So in my app, the user will find images, kind of like the concept art feature in video games. I want these images to be able to be zoomed, shared, and whatever-ed - like in the gallery app. What's ...
5
votes
1answer
988 views
Content Provider INSTALL_FAILED_CONFLICTING_PROVIDER (installing content provider as a separate apk)
I have two applications which use the same content provider, but I can't put the same content provider in both applications- it shows INSTALL_FAILED_CONFLICTING_PROVIDER error. So I have put my ...
5
votes
2answers
755 views
UnsupportedOperationException while calling getSharedPreferences() from unit test
I've implemented Content Provider that retrieves data from a service installed on network.
The content provider takes required parameters from shared preferences (user credentials, app name, etc.)
...
5
votes
1answer
1k views
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 also a ContentProviderClient, which can ...
5
votes
1answer
595 views
Can I extend Androids Contacts database?
I was wondering is it possible to extend the Android Contacts database?
From here - http://d.android.com/reference/android/provider/ContactsContract.html
It says:
ContactsContract defines an ...
5
votes
1answer
811 views
Semantics of withValueBackReference?
I have read the docs multiple times, but I still cannot figure out the exact semantics of [link text][1]
[1]: ...
5
votes
3answers
810 views
Is it possible to access resources in another APK without using content providers?
I thought that it is impossible to access resources contained in other APK unless content providers are used. However, I stumbled upon an app called Better Keyboard. It uses skins, so I decided to ...
5
votes
2answers
174 views
Android 1.x Contacts.Extensions for a custom account type?
I'm writing a social networking app that has contacts sync functionality. I have working code (from an example I found on here) that inserts contacts on v2.x in a sync adapter.
However, the ...
5
votes
2answers
1k views
Android private content provider?
I am developing an application that involves some sensitive user information. I retrieve this information via a private web API. I am trying to determine the best way to get this data into my app. ...
5
votes
1answer
3k views
How to query the MMS Log in Android
In my app I need to query both the SMS and the MMS log to get the history of all incoming and outgoing messages. This code has worked wonderfully for SMS:
Cursor c = ...
4
votes
3answers
133 views
null pointer exception while instantiating content resolver?
In my Android, I am reading the contacts by using content resolver.But content resolver is not getting initialized ,it gives NullPointerException.
I want to use the string arrays in another class and ...
4
votes
2answers
235 views
How to create a Thread-safe ContentProvider?
Android documentation says
ContentProvider methods can be called from various ContentResolver
objects in different processes and threads, they must be implemented
in a thread-safe manner
And ...
4
votes
3answers
251 views
how to decide between direct database access and content provider?
I am writing an application that consists of business logic and UI parts. There is quite big amount of data to be stored and accessed/modified by both BL and UI. In most of the cases changes to the ...
4
votes
1answer
873 views
SecurityException: Permission Denial error
I've just upgraded to the new version of gmail (v2.3.5) and I've got an app that queries the content provider to get details about the contacts that messages are received for.
With the latest version ...
4
votes
3answers
447 views
Android ContentProvider and Google IO Rest Talk
To all,
If you watch the Google IO session on building Android REST apps they are suggesting in all three design patterns to use Content Providers regardless if you need to share data or not.
If you ...
4
votes
1answer
244 views
Android IPC and ContentProvider differences
I am trying to decide the best approach to expose encrypted content stored on phone to 3rd party apps. The content is sensitive and needs to be protected so only certain apps can access this. The ...
4
votes
4answers
290 views
Database handling with 2 processes
I have a an application that has 2 parts.
A service which creates content.
An application that uses the content
Each of these run as different processes. The problem is that both of them share a ...
4
votes
3answers
731 views
Problems with Android's UriMatcher
In an answer to a previous question of mine someone indicated that there is some flakiness (for lack of a better word) inherent in the Android class UriMatcher. Can anyone pinpoint the known issues ...
4
votes
1answer
425 views
Conflicting content providers
I am developping an application using a ContentProvider. It is declared in the manifest :
<provider android:name="foor.bar.FooBarProvider"
android:authorities="foo.bar.FoorBarProvider" ...
4
votes
1answer
574 views
Multiple Apps use same content provider
I am developing a set of apps that are distinguished only in certain brandings (think different sports teams); however, I am running into a problem where I am using one Library project for all of the ...
4
votes
1answer
191 views
Are there Android tools that assist in creating content providers?
I see that there are many options for ORM tools:
http://stackoverflow.com/questions/371538/any-good-orm-tools-for-android-development
But do any of them help you to create Content Providers quickly?
...
4
votes
3answers
931 views
Passing binary blob through an Android content provider
I have a content provider that is custom to my set of Android applications, and one of the things it needs to expose is a small (20-30k) byte array. The uri for these blobs looks like ...
3
votes
1answer
113 views
Accessing Gmail emails in Android
So basically I'm attempting to make an interactive live wallaper that basically displays your unread gmail emails on your wallpaper. I'm trying to figure out how to access a person's gmail account on ...
3
votes
1answer
63 views
Custom methods in a ContentProvider
Referring to this question if my custom method in a Content Provider doesn't return a cursor but, for example, a boolean value, how can I call the method? Is it possible?
3
votes
3answers
467 views
Android - broken XML parsing example
Android SDK since release of API v. 11 contains XmlAdapter sample which is also referenced from the official site. This sample appears now in at least 3 folders: android-11, android-12 and android-13. ...
3
votes
1answer
189 views
Using content provider to fetch emails
I need to fetch and list the received emails in my own layout listview.
Is this possible through Content Provider?
3
votes
3answers
1k views
Trouble writing internal memory android
void launchImageCapture(Activity context) {
Uri imageFileUri = context.getContentResolver()
.insert(Media.INTERNAL_CONTENT_URI, new ContentValues());
m_queue.add(imageFileUri);
...
3
votes
1answer
320 views
Best way to store data
I need to store some Photo related information for my app. I understand that you can read/write GPS location and image description already to the Image Content Provider.
I would also need to add ...
3
votes
1answer
1k views
Android - Select max in contentProvider
I try to run this query on my custom contentprovider.
cursor = activity.getContentResolver().query(
GoalDescriptor.CONTENT_URI,
"max(priority)", null,
...
3
votes
1answer
114 views
ContentObservers are basically useless
I'd love to be able to understand when a SPECIFIC item in the SMS or Call Log is changed. It's pretty easy to get notified when something changes in the appropriate content provider, but getting to ...
3
votes
1answer
408 views
Serving images and other files from a ContentProvider
I've search around and found questions about storing and retrieving files from a ContentProvider but my situation is a little different.
I am building an app that will host content for one of our ...
3
votes
1answer
127 views
Filter inputs in custom ContentProvider functions
In a custom ContentProvider I need to filter out some columns specified in the inputs. Given the text-oriented Android interfaces this is giving me a hard time.
For example the input on ...
3
votes
2answers
227 views
Is there any phone that doesn't have sms inbox content provider?
Is there any phone that doesn't have typical sms content provider ("content://sms/inbox")?
Or there is any phone that has different fields scheme?
3
votes
2answers
1k views
Android Contentprovider - update within an insert method
Is it ok to call the SQLiteDatabase update method in the Insert() overridden method of a content provider?
3
votes
2answers
2k views
How to store large blobs in an android content provider?
I have some large files (images and video) which I need to store in a content provider.
The android documentation indicates...
If you are exposing byte data that's
too big to put in the table ...
3
votes
1answer
263 views
When to delete a temporary file used in Intent.SEND for attached email?
We generate a temporary file on an Android device and attach it to an email. We use a custom Content Provider to feed that file to the email application. The problem is that the email application ...
3
votes
2answers
369 views
Android Content Provider inside the same application
I've more than one activity (inside the same Application) that needs to have access to the database. What's the best pattern to implement this ? Do I need a content provider even if all activities ...