Actually, it's beacause the Object itself in the Adapter is a Cursor ... This could help you maybe.
Instead of : String callno = mContactList.getAdapter().getItem(position).toString(); I would try : String callno = mContactList.getAdapter().getItem(position).toString(); String callno = ((Cursor)mContactList.getAdapter().getItem(position)).getString(1); And 1 being your row in your Cursor. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

