5.2显示
查询完成之后, QuerypartRepeartContactsTask 的onPostExecute方法调用流程图如下,
onPostExecute方法主要逻辑如下,
((MergeallActivity)target).updateAdapterData(result);
MergeallActivity的updateAdapterData方法如下,
mAdapter.setAdapterData(resultdata);
setAdapterData方法逻辑如下,
1,将查询结果保存在mAdapterData中,
mAdapterData = data;
2,设置分组以及选择框信息,
mSelectionPositions = new boolean[mAdapterData.size()];
for (int i = 0; i < mAdapterData.size(); i++) {
mSelectionPositions[i] = false;
}
3,调用notifyDataSetChanged方法刷新界面,
notifyDataSetChanged();
MergeListAdapter的getView方法主要逻辑如下,
1,获取每个分组的起始Cursor对象,
final Cursor cursor = getItem(position);
getItem方法如下,
Cursor cursor = mAdapterData.get(position);
return cursor;
2,View存在获取,不存在就创建,
View result;
CheckableImageView imageView;
AggreListItemViewCache itemViewCache;
if (convertView != null) {
result = convertView;
itemViewCache = (AggreListItemViewCache) result.getTag();
} else {
result = mLayoutInflater.inflate(
R.layout.merge_contact_manual_item, parent, false);
itemViewCache = new AggreListItemViewCache(result);
result.setTag(itemViewCache);
}
3,根据Cursor,利用do while循环逐个获取信息并显示,
nameView.setText(cursor.getString(1));
numberView.setText(cursor.getString(2).trim());
5.3 合并联系人
当点击界面上的合并按钮时,会出现弹出框,
mMergeButton.setOnClickListener(new OnClickListener(){
public void onClick(View V){
bindMergeContactId();//保存查询结果
(new ConfirmMergeDialogFragment()).show();
}
});
弹出框界面如下,
ConfirmMergeDialogFragment是MergeallActivity的内部类,继承DialogFragment,
onCreateDialog的PositiveButton 和 NegativeButton对应的监听事件如下,
public void onClick( DialogInterface dialogInterface, int whichButton) {
MergeContacts();
}
public void onClick( DialogInterface dialogInterface, int whichButton) {
startActivity(new Intent(MergeallActivity.this, MergeActivity.class));
}
也就是说,如果选择手动就会进入MergeActivity对应的界面,如果选择一键合并,就会调用MergeContacts方法开始合并所有分组的联系人。
在进入MergeActivity界面以及开始合并联系人之前,首先看看bindMergeContactId方法,主要逻辑如下,
1,获取分组结果的List<MatrixCursor> ,也就是查询到的所有结果,
List<MatrixCursor> cursorList = mAdapter.getmAdapterData();
2,利用for循环对分组进行遍历,
for(Cursor cursor : cursorList){
利用do while循环为获取分组的每个id信息,并保存在mAttachRawContactIds中,
do {
id = cursor.getLong(0);
•••
if(cursor.isFirst()){
mAttachRawContactIds.add(id);
mHostRawContactId = id;
}else{
mAttachRawContactIds.add(id);
}
} while (cursor.moveToNext());
3,将每个分组信息都保存在mSubGroupContactsIds中,
ArrayList<Long> subList = new ArrayList<Long>();
for(Long contactId : mAttachRawContactIds){
subList.add(contactId);
}
mSubGroupContactsIds.put(mHostRawContactId, subList);
mSubGroupContactsIds定义如下,
private Map<Long, ArrayList<Long>> mSubGroupContactsIds = new HashMap<Long, ArrayList<Long>>();
通过bindMergeContactId方法,将所有分组信息都保存在了mSubGroupContactsIds中,一个分组信息对应的id一个ArrayList<Long>,并且,是以每组第一个id为分组的HashMap的key。