Re: [android-developers] Re: Google contact name fetch

2011-08-06 Thread Nick Risaro
On Sat, Aug 6, 2011 at 9:49 PM, Goutom wrote: > Hi Nick > Thanks for reply.It dont stop my app. Check the log anyway, maybe there is a hint of whats happening there. But skips this step. What step? > I think my problems in these two lines: > >String where = ContactsContract.Data.CO

Re: [android-developers] Re: Google contact name fetch

2011-08-06 Thread Goutom
Hi Nick Thanks for reply.It dont stop my app.But skips this step.I think my problems in these two lines: String where = ContactsContract.Data.CONTACT_ ID + " = ? AND " + ContactsContract.Data.MIMETYPE + " = ?"; String[] whereParameters = new String[]{id, ContactsContract.CommonDataKi

Re: [android-developers] Re: Google contact name fetch

2011-08-06 Thread Nick Risaro
If you attach a logcat with the error maybe we can help you. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-deve

[android-developers] Re: Google contact name fetch

2011-08-06 Thread Goutom
Sorry for fonts.Here is the code to modify: public void Get_Contact_Name(String id) { String[] projection = new String[] {ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, ContactsContract.CommonDataKinds.StructuredName.FAMILY_NAME, Conta