カスタム Lazy Adapter がアタッチされた ListView があります。電話から連絡先を取得し、リストに表示します。複数の番号の扱いに問題があります。1 つの連絡先に異なるタイプの複数の番号がある場合、以下に示すように異なる連絡先として表示されます。
連絡先リストを取得するためのコードは次のとおりです。
public LazyAdapter getContactList(){
ContentResolver cr = mContext.getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
null, null, null, null);
if (cur.getCount() > 0) {
while (cur.moveToNext()) {
String id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
String name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
Cursor pCur = cr.query(Phone.CONTENT_URI,null,Phone.CONTACT_ID +" = ?",new String[]{id}, null);
while (pCur.moveToNext()) {
String phoneType = "";
int type = pCur.getInt(pCur.getColumnIndexOrThrow(Phone.TYPE));
switch (type){
case Phone.TYPE_HOME:
phoneType = "Home";
break;
case Phone.TYPE_MOBILE:
phoneType = "Mobile";
break;
case Phone.TYPE_WORK:
phoneType = "Work";
break;
case Phone.TYPE_FAX_HOME:
phoneType = "Home Fax";
break;
case Phone.TYPE_FAX_WORK:
phoneType = "Work Fax";
break;
default:
phoneType = "Other";
break;
}
String phoneNo = pCur.getString(pCur.getColumnIndex(Phone.NUMBER));
map = new HashMap<String, String>();
map.put(KEY_CONTACT_NAME, name);
map.put(KEY_CONTACT_NUM, phoneType + ": " + phoneNo);
//map.put(KEY_CONTACT_IMAGE, getString(getPhotoUri(id)));
contactList.add(map);
}
pCur.close();
}
}
}
adapter = new LazyAdapter(getActivity(), contactList);
return adapter;
}
そして、これが私の怠惰なアダプターです
public View getView(int position, View convertView, ViewGroup parent) {
View vi=convertView;
if(convertView==null)
vi = inflater.inflate(R.layout.contact_list, null);
TextView contactName = (TextView)vi.findViewById(R.id.contactName); // title
TextView contactNum = (TextView)vi.findViewById(R.id.contactNum); // artist name
ImageView thumb_image=(ImageView)vi.findViewById(R.id.list_image); // thumb image
HashMap<String, String> contact = new HashMap<String, String>();
contact = data.get(position);
// Setting all values in listview
contactName.setText(contact.get(ContactFragment.KEY_CONTACT_NAME));
contactNum.setText(contact.get(ContactFragment.KEY_CONTACT_NUM));
return vi;
}
連絡先に複数の番号がある場合、1 つの連絡先の下に複数の番号を表示するにはどうすればよいですか?
ありがとう