Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Why do you need to override the adapter ? – fiddler Nov 23 '12 at 8:48
Because I have my custom views, it's a good practice in android coding – Gorets Nov 23 '12 at 8:52
It's just that you don't use any custom layout in your code above – fiddler Nov 23 '12 at 9:58
No, it is not good practice to override code because you have custom views that should be used in getView to 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 in getView so we can let you know why it might be acting slow. – Andy Nov 23 '12 at 10:00
Whats initViewHolder? 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
show 2 more comments

closed as too localized by casperOne Nov 23 '12 at 14:06

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.