안드로이드 개발 질문/답변
(글 수 45,052)
연락처를 아래와 같은 방법으로 불러오고 인턴트로 사용하고 있습니다.
Cursor contactsCursor = getContentResolver().query(Contacts.CONTENT_URI, null, null, null, Contacts.DISPLAY_NAME);
String contactId = contactsCursor.getString(contactsCursor.getColumnIndex(Contacts._ID));
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(Contacts.CONTENT_URI+"/"+contactId));
삼성 기기에서는 모두 잘 작동하는데 LG 기기에서는 안된다는 연락들이 오고 있어서요...
Contacts.CONTENT_URI 방법을 쓰면 안되나요?
아니면 혹시 "/" 이걸 File.Separator로 꼭 써야 하는것인가요?
조언을 구합니다. (_ _)
감사합니다.



