Android ArrayAdapter getView问题,以避免多次调用

时间:2012-04-14 12:31:35

标签: android listview android-arrayadapter

作为我的第一个Android项目,我正在创建一个应用程序,允许用户显示Magic The Gathering交易卡游戏中的卡片。

我在ArrayAdapter中遇到一个问题,它在列表视图中显示了一系列卡片(根据版本)。

我正在阅读一个看起来像这样的字符串,例如:{2} {B} {B}并为每个字符创建ImageViews。然后我将这些ImageView添加到列表中的LinearLayout显示中。

问题是每次调用getView()时调用过程,因此只要向下滚动列表,ImageView的数量就会不断增加。 我希望一劳永逸地调用该程序。

任何帮助都会非常友好。 如果您需要更多信息,请不要犹豫。

谢谢! 鲁兹

package rudy.jaumain.mtgdb;

import java.util.ArrayList;

import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.content.Context;
import android.widget.TextView;
import android.graphics.Color;


public class MTGSetListAdapter extends ArrayAdapter<MTGCard> {

    private ArrayList<MTGCard> set;

    public MTGSetListAdapter(Context c, int resource, int textViewResourceId, ArrayList<MTGCard> set){
        super(c, resource, textViewResourceId, set);
        this.set = set;
    }

    static class ViewHolder{
        TextView name;
        ImageView rarity;
        LinearLayout manacost;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {



        ViewHolder holder;
        if(convertView == null){
            convertView = super.getView(position, convertView, parent);
            System.out.println("CONVERTVIEW IS NULL");
            holder = new ViewHolder();

            holder.name = (TextView)convertView.findViewById(R.id.editionlist_item_name);
            holder.rarity = (ImageView)convertView.findViewById(R.id.editionlist_item_rarity);
            holder.manacost = (LinearLayout)convertView.findViewById(R.id.editionlist_item_manacost); 

            convertView.setTag(holder);
        }
        else{
            System.out.println("CONVERTVIEW IS NOT NULL");
            holder = (ViewHolder)convertView.getTag();
        }

        MTGCard currentCard = this.set.get(position);
        if(currentCard != null){
            holder.name.setText(currentCard.getName());
            holder.name.setTextColor(Color.BLACK);
            //Manacost example : {2}{B}{B}
            String manacostStr = currentCard.getManacost();     
            int i=0;
            String currentMana = null;
            while(i < manacostStr.length()){
                char currentChar = manacostStr.charAt(i);
                if(currentChar == '{'){
                    currentMana = null;
                }
                else
                {
                    if(currentChar == '}'){
                        ImageView iv = new ImageView(getContext());
                        int idMana = getContext().getResources().getIdentifier("mana_"+currentMana.toLowerCase(), "drawable", getContext().getPackageName());
                        iv.setImageResource(idMana);
                        iv.setAdjustViewBounds(true);
                        holder.manacost.addView(iv);
                        currentMana = null;
                    }
                    else{
                        if(currentMana == null){
                            currentMana = String.valueOf(currentChar);
                        }
                        else{
                            currentMana += String.valueOf(currentChar);
                        }
                    }
                }
                i++;
            }

            String rarityStr = currentCard.getRarity().toLowerCase();
            int id = this.getContext().getResources().getIdentifier("rarity_"+rarityStr, "drawable", this.getContext().getPackageName());
            holder.rarity.setImageResource(id);
            /* COLOR SYMBOLS TO HANDLE LISTVIEW_ITEM BACKGROUNDCOLOR
             * 
             * Colored artifacts are not handled for now as : AG --> O
             * 
             * L : Land
             * B : Black
             * R : Red
             * W : White
             * G : Green
             * U : Blue
             * A : Artifact
             * O : Gold (2 colors or more)
             * C : DoubleSided Cards Back
             */
            boolean posIsPair = (position %2 == 0);
            int c;
            char color = '\0';
            if(currentCard.getColor().length()>1){
                if(currentCard.getColor().charAt(0) == 'A'){
                    color = currentCard.getColor().charAt(1);
                }
                else color = 'O';
            }
            else{
                color = currentCard.getColor().charAt(0);
            }
            switch(color){
            case 'L' :
                if(posIsPair)c = R.color.L1;
                else c = R.color.L2;
                break;
            case 'B' :
                if(posIsPair)c = R.color.B1;
                else c = R.color.B2;
                break;
            case 'R' :
                if(posIsPair)c = R.color.R1;
                else c = R.color.R2;
                break;
            case 'W' :
                if(posIsPair)c = R.color.W1;
                else c = R.color.W2;
                break;
            case 'G' :
                if(posIsPair)c = R.color.G1;
                else c = R.color.G2;
                break;
            case 'U' :
                if(posIsPair)c = R.color.U1;
                else c = R.color.U2;
                break;
            case 'A' :
                if(posIsPair)c = R.color.A1;
                else c = R.color.A2;
                break;
            case 'O' :
                if(posIsPair)c = R.color.O1;
                else c = R.color.O2;
                break;  
            case 'C' :
                c = Color.TRANSPARENT;
                break;  
            default :
                c = Color.TRANSPARENT;
                break;
            }
            convertView.setBackgroundColor(this.getContext().getResources().getColor(c));
        }
        return convertView;

    }

    @Override
    public int getCount() {
        return set.size();
    }

    @Override
    public MTGCard getItem(int arg0) {
        return set.get(arg0);
    }

}

1 个答案:

答案 0 :(得分:1)

ListView及其适配器尝试创建足够的视图以支持在屏幕上或滚动时可见的列表元素。 ListView中可能有数百个对象,但并非所有对象都始终附加到视图中。调用getView()时,如果已经创建了足够的视图对象,convertView参数将为您提供其中一个重新填充position参数指定的行。

这些视图对象不仅会填充您存储在ViewHolder类中的视图,还会附加到它们的任何子视图。

因此,在“convertview is not null”的情况下,您可能希望删除所有holder.manacost子项的图像。 (如果在convertView中为您提供的预先存在的视图层次结构的状态与您在代码的null convertView分支中创建的视图相同,则您的代码才能正常工作。)

或者,虽然这会更复杂,但在重新填充manacost视图时重用这些ImageView对象可能是合适的。