For issues relating to developing with the android SDK, version 2.0 (Eclair).

learn more… | top users | synonyms

1
vote
0answers
73 views

Android 2.0: How do I receive a list of groups a known contact belongs to?

I've written my application to find the contact, if one exists, for an incoming phone call. I want to take action if that contact belongs to one or more flagged groups. However I cannot find a link ...
3
votes
3answers
3k views

How can I force a GridView to use the whole screen (regardless of display size)?

I've got the following layout file, which has a GridView and an ImageView behind that as the background. <?xml version="1.0" encoding="utf-8"?> <FrameLayout ...
1
vote
3answers
6k views

pull to refresh in android [duplicate]

Possible Duplicate: How to implement Android Pull-to-Refresh I have implemented pull to refresh in my app which works fine in 2.2, but in 2.0 it doesn't. I couldn't find the method ...
3
votes
3answers
561 views

Problem running applications on Android 2.0 compiled on Android SDK 2.3

There seems to be a breaking change in SDK 2.3 that causes applications compiled on it to fail to work on Android 2.0 devices. (Although Android 2.0 is officially gone, I'm unfortunately stuck with a ...
2
votes
1answer
839 views

My custom ringtone previews but is silent during incoming call?

I have an MP3 file that I can play outside of Android and stored on the sdcard. I did the call to MediaScannerConnection.scanFile(mContext, ... so it has been discovered. In ...
0
votes
1answer
4k views

Android 2.0 How to get display name and number in a contact group

I get a list of contacts in a given group id by id: Cursor cur = ctx.managedQuery(ContactsContract.Data.CONTENT_URI, new String[] { GroupMembership.GROUP_ROW_ID, ...
1
vote
1answer
1k views

How to register listening for Contact changes on android 2.0?

How to register a content observer to listen for changes in the contact database in android 2.0? What URI should I use? Thank you
3
votes
1answer
5k views

Android - Get All Contacts from All Sources

I have been attempting to make an Android application, built against 2.0, that requires getting all of the user's contacts and displaying them in a formatted way. I have been able to get a list using ...
80
votes
8answers
70k views

How to read contacts on Android 2.0

I'm working on Android 2.0 and am trying to receive a list of all contacts. Since android.provider.Contacts.People is deprecated, I have to use android.provider.ContactsContract, But I can't find a ...
20
votes
1answer
12k views

Best Android 2.0 development book?

I'm looking for a single book source for Android 2.0 development. While I may be ok with a general Android development book, a book which covers 2.0 features is ideal. What is the best Android 2.0 ...