3

我编写了一个代码来在 ListView 中动态显示图像、按钮和文本。所以 ListView 加载按钮。我想通过单击此按钮删除 ListView 中的选定项目。

适配器类:

public class LazyAdapter extends BaseAdapter {

    private Activity activity;
    private String[] data;
    private static LayoutInflater inflater=null;
    public ImageLoaderLogoUnder imageLoader; 

    public LazyAdapter(Activity a, String[] d) {
        activity = a;
        data=d;
        inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        imageLoader=new ImageLoaderLogoUnder(activity.getApplicationContext());
    }

    public int getCount() {
        return data.length;
    }

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

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

    public View getView(int position, View convertView, ViewGroup parent) {
        View vi=convertView;
        if(convertView==null)
            vi = inflater.inflate(R.layout.inflatelistview, null);

        TextView text=(TextView)vi.findViewById(R.id.textView1);
        ImageView image=(ImageView)vi.findViewById(R.id.imageView1);
        Button btn=(Button)vi.findViewById(R.id.button1);
        btn.setTag(position);
        btn.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Integer index = (Integer) v.getTag();
                //items.remove(index.intValue());  
                notifyDataSetChanged();

            }
        });
        text.setText("item "+position);
        imageLoader.DisplayImage(data[position], image);
        return vi;
    }
}

这是一个 ListView 活动类

ShowData show = new ShowData();

        String s[] = show.getData();
        adapter = new LazyAdapter(this, s);

        inflater = (LayoutInflater) this
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        list = (ListView) findViewById(R.id.listView1);
        list.setAdapter(adapter);

这个怎么做?

4

4 回答 4

9

您可以尝试ArrayList改用如下:

 public class LazyAdapter extends BaseAdapter {

private Activity activity;
private ArrayList<String> data;
private static LayoutInflater inflater=null;
public ImageLoaderLogoUnder imageLoader; 

public LazyAdapter(Activity a, ArrayList<String> d) {
    activity = a;
    data=d;
    inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    imageLoader=new ImageLoaderLogoUnder(activity.getApplicationContext());
}

public int getCount() {
    return data.size();
}

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

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

public View getView(int position, View convertView, ViewGroup parent) {
    View vi=convertView;
    if(convertView==null)
        vi = inflater.inflate(R.layout.inflatelistview, null);

    TextView text=(TextView)vi.findViewById(R.id.textView1);
    ImageView image=(ImageView)vi.findViewById(R.id.imageView1);
    Button btn=(Button)vi.findViewById(R.id.button1);
    btn.setTag(position);
    btn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            Integer index = (Integer) v.getTag();
            //items.remove(index.intValue());  
            data.remove(position);
            notifyDataSetChanged();

        }
    });
    text.setText("item "+position);
    imageLoader.DisplayImage(data.get(position), image);
    return vi;
}
}
于 2013-10-02T17:50:30.777 回答
1
  1. 从“数据”中删除该项目。
  2. 调用 adapter.notifyDataSetChanged()
于 2013-10-02T17:34:06.767 回答
1

您在 OnClick 侦听器中被注释掉的部分看起来就快到了。我会将您的 data d 元素的类型从字符串数组更改为 ArrayList(从private String[] data更改为private ArrayList data)。这将使您更容易移除您想要移除的项目。

从简单的 [] 数组中删除一项需要更多工作,您基本上必须创建一个新数组并重新填充要保留的项,然后返回新数组。它没有像 ArrayList 这样的“删除”方法。适配器类也没有“items”成员,您必须操作“data”成员。

然后将适配器构造函数的签名更改为LazyAdapter(Activity a, ArrayList d)。将“删除”行从items.remove(index.intValue())更改为data.remove(position)。您不需要btn.setTagv.getTag因为位置已经可用。对NotifyDataSetChanged()的调用将刷新列表视图。

不同的构造函数意味着您需要将 ArrayList 发送到您的适配器。Show.getData()需要更改为返回一个 ArrayList,s 的类型需要从 String[] 更改为 ArrayList。

这基本上与给出的答案相同,但更冗长。希望能帮助到你...

于 2013-10-02T18:36:18.387 回答
1
@Override
    public View getView(int position, View convertView, ViewGroup parent) 
    {
        View row = null;
        LayoutInflater inflater = getLayoutInflater();

        row = inflater.inflate(R.layout.one_result_details_row, parent, false);

        // inflate other items here : 
        Button deleteButton = (Button) row.findViewById(R.id.Details_Button01);
         deleteButton.setTag(position);

        deleteButton.setOnClickListener(
            new Button.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Integer index = (Integer) view.getTag();
                    items.remove(index.intValue());  
                    notifyDataSetChanged();
                }
            }
        );

在 getView() 方法中,您将 ListItem 标记为位置

deleteButton.setTag(position);

将 getTag() 对象转换为整数

然后在 OnClickListener() 中删除该项目

items.remove(index.intValue());  
于 2016-01-22T13:07:22.693 回答