我写了一个显示图像的代码,按钮&在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);
怎么做?
答案 0 :(得分:8)
您可以尝试使用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;
}
}
答案 1 :(得分:1)
答案 2 :(得分:1)
OnClick侦听器中的注释掉的部分看起来就像你在那里一样。我会将数据d元素的类型从字符串数组更改为ArrayList(从私有String []数据到私有ArrayList数据)。这样可以更轻松地删除您想要的项目。
从一个简单的[]数组中删除一个项目是更多的工作,你基本上必须创建一个新的数组并重新填充要保留的项目,返回新的数组。它没有像ArrayList这样的“删除”方法。适配器类也没有“items”成员,你必须操纵“数据”成员。
然后将适配器构造函数的签名更改为 LazyAdapter(Activity a,ArrayList d)。将 items.remove(index.intValue())中的“删除”行更改为 data.remove(position)。您不需要 btn.setTag 或 v.getTag 作为位置已经可用。对 NotifyDataSetChanged()的调用将刷新列表视图。
不同的构造函数意味着您需要将ArrayList发送到适配器。需要更改 Show.getData()以返回一个ArrayList,s的类型需要从String []更改为ArrayList。
这基本上是相同的答案,更加冗长。希望它有所帮助...
答案 3 :(得分: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());