单击 ListView 上的删除按钮后删除 ListView 上的项目
Posted
技术标签:
【中文标题】单击 ListView 上的删除按钮后删除 ListView 上的项目【英文标题】:Delete item on ListView after click delete button on ListView 【发布时间】:2013-10-09 04:10:21 【问题描述】:我编写了一个代码来在 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 Activity 类
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);
如何做到这一点?
【问题讨论】:
【参考方案1】:您可以尝试使用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;
【讨论】:
【参考方案2】:-
从“数据”中删除该项。
调用 adapter.notifyDataSetChanged()
【讨论】:
【参考方案3】:您在 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.setTag 或 v.getTag 作为位置已经可用。调用 NotifyDataSetChanged() 将刷新列表视图。
不同的构造函数意味着您需要将 ArrayList 发送到您的适配器。 Show.getData() 需要更改为返回一个 ArrayList,s 的类型需要从 String[] 更改为 ArrayList。
这基本上与给出的答案相同,但更冗长。希望对你有帮助...
【讨论】:
【参考方案4】:@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());
【讨论】:
以上是关于单击 ListView 上的删除按钮后删除 ListView 上的项目的主要内容,如果未能解决你的问题,请参考以下文章
ListView 总是从 CustomAdaptor 中删除最后一行
想要删除recycleview上的一个项目。单击按钮删除单击。该项目在firebase数据库中删除但在循环视图中该项目存在