Android baseAdapter停止评估if语句是否向上滚动

时间:2015-09-26 02:54:40

标签: java android listview baseadapter

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

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 评估为true时,ImageButton才会更改背景颜色,并且当向下滚动Listview时它再次正常工作但是当返回时ImageButton会在行上变为橙色它没有想到的。这里有一些图片来澄清这一点。第一&最重要的是橙色背景下方的复选标记图片;是ImageButton,原始颜色是蓝色,如前所述。 该图像的左侧是Profile_ID,这是32 然后,如果您通过名称查找,那么有一个数字,即Data_ID为32 ,因此图像背景变为橙色正如它所设想的那样。

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

1 个答案:

答案 0 :(得分:2)

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

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

此外,我发现你不使用ViewHolders而是总是调用findViewById()。这是我的建议,特别是如果你有足够的意见。看我上一篇文章: https://stackoverflow.com/questions/32775508/issue-in-display-phone-contact-list-in-android-application-very-slow/32775803#32775803