Is ContactsContract.Contacts by default empty? If so, how do I add some test data to it?

Otherwise, I must be doing something wrong/omitting something, as this Activity displays completely empty.

public class Authorize_Activity extends ListActivity {

    Cursor mContacts;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Return all contacts, ordered by name
        String[] projection = new String[] { ContactsContract.Contacts._ID,
                ContactsContract.Contacts.DISPLAY_NAME }; // Would like the phone num, too
        mContacts = managedQuery(ContactsContract.Contacts.CONTENT_URI,
                projection, null, null, ContactsContract.Contacts.DISPLAY_NAME);

        // Display all contacts in a ListView
        SimpleCursorAdapter mAdapter = new SimpleCursorAdapter(this,
            android.R.layout.simple_list_item_1, mContacts, 
                new String[] { ContactsContract.Contacts.DISPLAY_NAME },
                new int[] { android.R.id.text1 }); 

        setListAdapter(mAdapter);
    }

My understanding is that android's simple_list_item_1 should provide the "View" so that I don't need to call SetContentView().

But although my Activity is displaying, no data appears in it. So...am I just missing Contacts data, or is something more nefarious afoot?

link|improve this question

Not sure - is this on an emulator? If so then it wouldn't surprise me if it is empty by default. Try using the emulator's contacts / people app to add some fake contacts. – MisterSquonk Feb 6 at 3:32
That was it; that's what you get for assuming: I assumed they (the Googlers/Androidheads) would supply a few random/bogus Contacts to the emulator, like Sergey Brin, Larry Page, Jimmy Page, etc. Once I added a few (not those), it seems to work fine. – Clay Shannon Feb 7 at 1:42
I've added my comment as an answer. It seems it may well be useful to other people in the future. – MisterSquonk Feb 7 at 3:02
feedback

1 Answer

up vote 1 down vote accepted

Is this on an emulator?

If so then it wouldn't surprise me if the contacts list is empty by default. Try using the emulator's contacts / people app to add some fake contacts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.