Tagged Questions

36
votes
7answers
35k 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
11k 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 ...
3
votes
3answers
464 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
2k 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 ...
1
vote
2answers
820 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
3k views

pull to refresh in android

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 'smoothScrollBy()' in 2.0. Can anyone please give me the solution for this ...
1
vote
1answer
747 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
0
votes
1answer
2k 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, ...