我有自定义列表视图,我在其中预览从服务器获取的数据。现在我想在其 itemclick 上更改列表视图中的数据。我要预览的新数据也来自服务器。这是我的 BaseAdapter 类
class MyCustomAdapter extends BaseAdapter {
Vector<String> data_text;
int[] data_image;
MyCustomAdapter()
{
data_text = null;
data_image = null;
}
MyCustomAdapter(Vector<String> text, int[] image)
{
data_text = text;
data_image = image;
}
public int getCount()
{
return data_text.size();
}
public String getItem(int position)
{
return null;
}
public long getItemId(int position)
{
return position;
}
public void updateResults( Vector<String> results) {
data_text= results;
//Triggers the list update
notifyDataSetChanged();
}
public View getView(int position, View convertView, ViewGroup parent)
{
LayoutInflater inflater = getLayoutInflater();
View row;
row = inflater.inflate(R.layout.category_list_element, parent, false);
TextView textview = (TextView) row.findViewById(R.id.TextView01);
ImageView imageview = (ImageView) row.findViewById(R.id.ImageView01);
textview.setText(data_text.get(position).toString());
imageview.setImageResource(data_image[position]);
return (row);
}}
请提供解决方案。
请注意,我想在 listview 的 onclick 上预览同一活动的数据。
这是我的 onclick l1 是列表视图
l1.setAdapter(new MyCustomAdapter(appCat, image));
l1.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,int position,long id)
{
View curr = parent.getChildAt((int) id);
TextView c = (TextView)curr.findViewById(R.id.TextView01);
String sel_item = c.getText().toString();
API_GOD(URL);
}});
API_GOD(URL) 是接收的服务器端数据。现在告诉我如何更新列表。