Android baseAdapter 在向上滚动时停止评估 if 语句

Android baseAdapter stops evaluating if statement on scrolling up

我有一个列表视图,其中包含一个基本适配器,它以 Json 格式从数据库中获取数据。所有这些都有效我的问题是我有一个蓝色背景的 ImageButton 但是如果 IF 语句中的某些条件评估为 true 那么它会将 ImageButton 背景更改为浅橙色。这在我向下滚动列表视图时有效,但是当我向上滚动列表视图时,一堆不符合要求的其他行将图像变为橙色。我不知道这是怎么回事这是我的代码

public class LocalFeed_CustomView extends BaseAdapter {

    JSONObject names;
    Context ctx;
    LayoutInflater myiflater;
Activity m;
    ImageButton reputation_add;




    public LocalFeed_CustomView(JSONObject arr,Context c) {
        ctx = c;
        names = arr;
    }


    @Override
    public int getCount() {
        try {
            JSONArray jaLocalstreams = names.getJSONArray("localstreams");
            return jaLocalstreams.length();
        } catch (Exception e) {
            Toast.makeText(ctx,"Error: Please try again",Toast.LENGTH_LONG).show();
            return names.length();
        }


    }




    @Override
    public Object getItem(int position) {
        return position;
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position,View convertView, ViewGroup parent) {
        try {
            if(convertView==null) {

                LayoutInflater li = (LayoutInflater) ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                convertView = li.inflate(R.layout.customadapter, null);
            }

             reputation_add= (ImageButton)convertView.findViewById(R.id.reputation_add);


            SharedPreferences myaccount= ctx.getSharedPreferences("userInfo", MODE_PRIVATE);
            // This gets user ID and matches it with Data_ID which come from the database
            int Profile_ID = myaccount.getInt("id",0);

                JSONArray jaLocalstreams = names.getJSONArray("localstreams");
                final JSONObject jsonObject = jaLocalstreams.getJSONObject(position);
                int Data_ID=   jsonObject.getInt("myid");

           // IF the statement is true then the ImageButton Background changes color
            if(Data_ID==Profile_ID)
            {
                reputation_add.setBackgroundResource((R.drawable.borders));
            }



            return convertView;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return convertView;


    }

}

正如您在上面看到的,仅当 Data_ID=Profile_ID 评估为真时,如果 ImageButton 更改背景颜色,并且在向下滚动时再次完美运行Listview,但是当返回时,ImageButton 在它不应该的行上变成橙色。这里有一些图片来澄清这一点。 First & Foremost 在橙色背景下方的图片上,复选标记所在的位置;是 ImageButton,如前所述,原始颜色为蓝色。 该图像的左侧是 Profile_ID,即 32 然后,如果您通过名称查找 ,那里有一个数字 Data_ID这是 32 因此图像背景变成了橙色。

下一张图片是我向上滚动并查看此行上的数字,您可以看到 Profile_ID 是 32,但 Data_ID 是 0,但它仍然将背景变成橙色这不应该发生,因为显然 32==0 是错误的。任何建议将不胜感激。

我认为是ListView的回收机制导致的。在 getView() 内部,每次你有一个 if 语句时,你还必须设置一个 else 语句来做相反的事情。否则,当一个项目被回收时(当你向上滚动时,很可能),条件已经发生并且背景已经改变。您正在使用具有交替背景的相同回收项目,如果条件不再成立,您永远不会将其设置回原始背景。应该是:

...
if (condition_holds) {
    reputation_add.setBackgroundResource((R.drawable.borders));
} else {
    reputation_add.setBackgroundResource((R.drawable.original_background));
}

此外,我看到您不使用 ViewHolders,而是总是调用 findViewById()。这是不明智的,尤其是当您有大量视图时。看我之前的post: