Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
4k views

How to use SMS content provider? Where are the docs?

I'd like to be able to read the system's SMS content provider. Basically I wanted to make an SMS messaging app, but it would only be useful if I could see past threads etc. It seems like there's a ...
4
votes
1answer
2k views

Android Get Group of Contact by ID

I have a contact ID, how do I get the group the contact is assigned to? I am sure it is something to do with the Contacts.Groups class but I cannot figure it out. Thanks, Isaac
3
votes
2answers
1k views

Usage CursorLoader without ContentProvider

Android SDK documentation says that startManagingCursor() method is depracated: This method is deprecated. Use the new CursorLoader class with LoaderManager instead; this is also available on ...
3
votes
1answer
253 views

Tools to help implementing SQLite based persistence for Android?

Do you know any tools that may help to implement basic SQLite-based persistence in an Android app? Or even tools that may ease the process of building content providers? I've had quite a few ...
3
votes
3answers
916 views

How do I get the _count in my content provider?

What should I do to get my content provider to return the _count column with the count of records? The documentation says it is automatic, but maybe it's only taking about some built-in content ...
2
votes
1answer
571 views

Problem when try to insert in Content Provider[RESOLVED]

Look what Im doing. Im getting a SMS message and breaking word by word using the StringTokenizer class.I've done this, but when I try to insert the word in the content provider, the application stops, ...
1
vote
2answers
516 views

In an Android application, should I have one content provider per table or only one for the entire application?

I have years of experience with Microsoft .NET development (primarily C#) and have been working to come up to speed on Android and Java. So far, I've built a small application with a couple screens ...
1
vote
1answer
592 views

Trying to understand setting content providers in Android

I wanna change APN settings in a phone. Looked the api and there is a content provider named ACTION_APN_SETTINGS developer.android.com/reference/android/provider/Settings.html#ACTION_APN_SETTINGS ...
1
vote
1answer
1k views

Returning a memory mapped InputStream from a content provider?

The the client side of a content provider consumer I can do something like this, to get a proper InputStream for reading the picture: InputStream is = ...
0
votes
0answers
61 views

Using getContentResolver().insert to add photos saved to sd card

I'm using this bit of code to add photos to the gallery that were taken with my app: ContentValues newImage = new ContentValues(2); ...
0
votes
1answer
64 views

what is the meaning of suggestions in a Content Provider Uri?

I've got a Uri as below: content://com.android.contacts/contacts/#/suggestions What data will it return? What's the meaning of 'suggestions' here? Thanks in advance!
0
votes
0answers
403 views

Unable to send file by Bluetooth on Samsung Galaxy Tab

We have an application that stores user documents in a ContentProvider. There are hooks to allow the user to send one of these documents by the standard Intent.ACTION_SEND mechanism. This all works ...
0
votes
1answer
1k views

How to access the SMS/MMS database on Android without using “content://sms”

I recently read that the content provider content://sms shouldn't be used to access the SMS store, as there could be some mobile phones that might not know how to deal with it. So, what would be the ...
0
votes
2answers
459 views

Examples of android applications that use direct database access instead of content providers?

Just found out that I don't need content providers if I don't need to share data with other applications. But since the examples I've seen all use content providers, I'm not sure how to proceed ...
0
votes
1answer
863 views

Any way to override the managedQuery method to include a limit param when using a self-made content provider?

I've built my own content provider and I've run into an instance where I need to execute a query and include a limit param. The method call to managedQuery doesn't include this param and there fore I ...
0
votes
1answer
226 views

Android - How to populate Content Provider only once on App install?

I have a database in my application that is used as a ContentProvider. It holds settings values for the application, and when I install the application I want it to add a hardcoded set of values just ...
0
votes
1answer
4k views

Android - Calling Activity from widget

I currently have widget for my app Hire*A*Droid bundled with the main application. I would like to unbundle the widget and release it as a separate offering. However - the widget is relying on ...