• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. R

    Apps Trying to read a Contact

    I am trying to read from (and eventually write to) the Contacts database. Here is a code fragment: String[] projection = new String[] { People._ID, People.NAME, People.NUMBER}; Uri contacts = Uri.parse("content://contacts/people"); Cursor mCursor = managedQuery(contacts...