|
@@ -356,14 +356,14 @@ public class DataManager {
|
|
|
|
|
|
GridModel groupModel = new GridModel();
|
|
|
groupModel.title = ""; //ResUtils.getString(R.string.my_family);
|
|
|
- groupModel.resId = R.drawable.contact_group;
|
|
|
+ groupModel.defaultId = R.drawable.contact_group;
|
|
|
groupModel.type= Constant.E_FUNCTION.GROUP;
|
|
|
//第二期才做群聊
|
|
|
//retList.add(groupModel);
|
|
|
|
|
|
GridModel addModel = new GridModel();
|
|
|
addModel.title = ResUtils.getString(R.string.add);
|
|
|
- addModel.resId = R.drawable.common_add;
|
|
|
+ addModel.defaultId = R.drawable.common_add;
|
|
|
addModel.type= Constant.E_FUNCTION.ADD;
|
|
|
//分享模式时,不显示add watch
|
|
|
//第一期去掉加好友
|
|
@@ -378,7 +378,7 @@ public class DataManager {
|
|
|
for (ContactBean bean: contactList) {
|
|
|
GridModel model = new GridModel();
|
|
|
model.title = bean.name;
|
|
|
- model.resId = R.drawable.default_contact;
|
|
|
+ model.defaultId = R.drawable.default_contact;
|
|
|
model.filePath = bean.profilePath;
|
|
|
model.type = Constant.E_FUNCTION.SINGLE;
|
|
|
model.bean = bean;
|