본문 바로가기
Android

전화 번호로 전화번호부 검색

by Leo 리오 2011. 11. 8.
반응형



  1.         static String getName(ContentResolver CR, String num)
  2.         {
  3.                 Cursor contacts2 = CR.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, "data1 = "+ num, null, null);
  4.                 String phone_name = null;
  5.  
  6.                 while (contacts2.moveToNext())
  7.                 {
  8.                         phone_name = contacts2.getString(contacts2.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
  9.                         return phone_name;
  10.                 }
  11.                
  12.                 return num;
  13.         }






반응형

댓글