0

我有一个 ListView,它根据所选 RadioButton 的值填充,RadioButtons 的 OnClick 事件触发 ListView 刷新新值。

我几乎可以正常工作,但我遇到的问题是,如果第一个 RadioButton 有 6 个项目要显示在 ListView 中,那么第二个单击的 RadioButton 有 10 个项目要显示,ListView 显示 10 个项目中的前 6 个项目,然后再次前 4 个项目,好像它正在包装这些项目。我正在使用ArrayList<HashMap<String, String>> listValuesSimpleAdapter 填充 ListView,并且我检查了 listValues 确实包含 10 个不同的值。

显示项目的代码如下:

    ListView listview = (ListView)getView().findViewById(R.id.my_listview);

    SimpleAdapter simpleAdapt = 
            new SimpleAdapter(getView().getContext(), listValues, 
                               R.layout.my_listitem, 
                               null, null) {
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            HashMap<String, String> listItem = listValues.get(position);

            View v = convertView;

            if (convertView == null) {
                LayoutInflater inflater = (LayoutInflater)parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);                
                v = inflater.inflate(R.layout.my_layout, null);

                TextView nameTextview =
                        (TextView)v.findViewById(R.id.my_textview);
                nameTextview.setText(listItem.get("name"));

                TextView detailTextview =
                        (TextView)v.findViewById(R.id.my_textview_2);
                detailTextview.setText(listItem.get("detail"));

                if (listItem.get("main_image") != null) {
                    int imageId = Integer.valueOf(listItem.get("main_image"));
                            (ImageView)v.findViewById(R.id.my_imageview);
                    image.setImageResource(imageId);
                }
            } 
            return v;
        };
    };

    listview.setAdapter(simpleAdapt);

重复列表项是否有明显的原因?

4

1 回答 1

1

您处理 getView 方法的方式不是那么有效。您应该尝试 ViewHolder 模式。下面的链接是一个很好的做法,您可以遵循。

http://www.vogella.com/articles/AndroidListView/article.html

于 2013-10-28T16:35:01.457 回答