I'm wrote a SimpleCursorAdapter where I overrinded
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (this.getCursor().moveToPosition(position)) {
long i = System.currentTimeMillis();
ViewHolder viewHolder;
if (convertView == null) {
convertView = layoutInflater.inflate(layout, null);
viewHolder = new ViewHolder();
viewHolder.respondent = (TextView) convertView.findViewById(R.id.respondent);
viewHolder.body = (TextView) convertView.findViewById(R.id.body);
viewHolder.date = (TextView) convertView.findViewById(R.id.millis);
viewHolder.unreadMessages = (TextView) convertView.findViewById(R.id.unreadMessages);
viewHolder.icon = (ImageView) convertView.findViewById(R.id.messageIcon);
convertView.setTag(viewHolder);
convertView.setOnClickListener(this);
}
else
viewHolder = (ViewHolder) convertView.getTag();
initViewHolder(viewHolder);
Log.d(TAG, (System.currentTimeMillis() - i) + " time end getView");
}
return convertView;
}
@Background
public void initViewInBack(ViewHolder viewHolder) {
final String body = this.getCursor().getString(bodyIndex);
final long date = this.getCursor().getLong(dateIndex);
final String conversationId = this.getCursor().getString(conversationIdIndex);
viewHolder.conversationID = conversationId;
final String address = this.getCursor().getString(addressIndex);
viewHolder.address=address;
int unread= Me.getMe().getMessageDAO().getUnreadMessagesCount(context, conversationId);
if(unread > 0)
viewHolder.unreadMessages.setText(unread + "");
else
viewHolder.unreadMessages.setText("");
String[] contactName=Me.getMe().getContactDAO().getContactNameByPhoneNumber(context, address);
if(contactName!=null && contactName.length > 0)
viewHolder.respondent.setText(contactName[0]);
else
viewHolder.respondent.setText(address);
// final String id = cursor.getString(idIndex);
final String id = contactDAO.getPhoto(context, contactName !=null && contactName.length > 0 ?
ContactsContract.Contacts.DISPLAY_NAME + " like '%" + contactName[0] + "%'":
ContactsContract.Contacts.HAS_PHONE_NUMBER + " like '%" + address + "%'");
viewHolder.id = id;
viewHolder.icon.setImageDrawable(Me.getMe().getContactDAO().getContactPicture(context, id));
viewHolder.body.setText(Me.highlightSelectedText(body, match), TextView.BufferType.SPANNABLE);
viewHolder.date.setText(format.format(date));
}
like I do it in ArrayAdapter using ViewHolder, but now my list are very slow and I think that a problems are in my solutions. I think that I should override getView using newView and bindView, something like code below
public View getView(int position, View convertView, ViewGroup parent) {
if (!mDataValid) {
throw new IllegalStateException("this should only be called when the cursor is valid");
}
if (!mCursor.moveToPosition(position)) {
throw new IllegalStateException("couldn't move cursor to position " + position);
}
View v;
if (convertView == null) {
v = newView(mContext, mCursor, parent);
} else {
v = convertView;
}
bindView(v, mContext, mCursor);
return v;
}
Does anybody can say me what kind of solutions is better and what i do wrong?
Thanks
getViewto begin with lol. I am not sure how you are implementing it, but give a little background of what you are doing and what code is ingetViewso we can let you know why it might be acting slow. – Andy Nov 23 '12 at 10:00initViewHolder? Like what code does that run. From what I see in getView, thats not the problem. You are running some long process every time which I believe to be causing your speed issues. – Andy Nov 23 '12 at 10:16