Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

In my ViewHolder, I have this method, that is called in the adapter when onBindViewHolder:

protected void bindViews(Item item) {
    dateTextView.setText(item.getDate());
    titleTxtView.setText(item.getTitle());
    if (item.hasMenu()) {
        Log.d("tag", "Item " + item.getId() + " has menu");
        menuButton.setVisibility(VISIBLE);
    } else {
        menuButton.setVisibility(INVISIBLE);
    }
}

But there are Items that doesn't have menu (that is hasMenu() returns false) but menuButton is shown and vice versa.

I think is because the item recycling because I have 100 items and just 2 have menu. It prints:

Item 31 has menu

Item 78 has menu

That's ok. However, in the app I can see that some other items are showing the menuButton and they shouldn't.

Should I force repaint each item when show/hide the menuButton? If so, how can I do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
212 views
Welcome To Ask or Share your Answers For Others

1 Answer

Use public int getItemViewType(int position) and public int getItemCount() to inflate two different layout,one with menu and other without the menu.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...