我正在使用列表视图的自定义适配器来显示图像和标题。 在我的应用程序中,我添加和删除列表中的项目,我必须在界面上显示更改。 对数据的任何更改我从数据库中获取所有列表并将其存储在适配器列表中,然后调用adapter.notifyDataSetChanged();但界面没有显示任何变化。 另一方面,当我直接添加或从适配器中删除项目时,它正确响应。 我使用了简单的适配器和适配器.notifyDataSetChanged();工作正常,但对于自定义它没有响应。 我也尝试过很多关于stackoverflow的解决方案但是没有工作。 喜欢 Updating the list view when the adapter data changes
Adapter.notifyDataSetChanged() is not working
notifyDataSetChange not working from custom adapter
我这样做是为了下载 在oncreate
enter code here
product_data = new ArrayList<Product>();
Bundle extras = getIntent().getExtras();
if (extras != null) {
value = extras.getInt("list_id");
}
product_data = db.getAllProductsstatus(value, 1);
Collections.reverse(product_data);
adapter = new ProductAdopter(this,
R.layout.listview_item_row, product_data, 2);
ListView listView1 = (ListView)findViewById(R.id.listView1);
listView1.setAdapter(adapter);
registerForContextMenu(listView1);
和onMenuItemSelected
enter code here
@Override
public boolean onMenuItemSelected(int featureId, MenuItem item) {
AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo)item.getMenuInfo();
int menuItemIndex = item.getItemId();
String listItemName = adapter.getItem(info.position)._name;
int id = adapter.getItem(info.position)._id;
if(menuItemIndex == 0)
{
db.deleteProduct(adapter.getItem(info.position));
product_data = db.getAllProducts(value);
Collections.reverse(product_data);
//adapter.remove(adapter.getItem(info.position));
adapter.notifyDataSetChanged();
}
else if(menuItemIndex == 1){
String name ;
if (adapter.getItem(info.position)._status == 0){
popall("bar code", "no bar code entered");
}
else {
popall("bar code", adapter.getItem(info.position)._bar_code);
}
}
else if (menuItemIndex == 2){
adapter.getItem(info.position)._status = 0;
adapter.getItem(info.position)._bar_code = "0";
db.updateProduct(adapter.getItem(info.position));
product_data = db.getAllProductsstatus(value, 1);
adapter.notifyDataSetChanged();
popall("alert", "successfully done");
}
return true;
}
我的自定义适配器类在下面给出
public class ProductAdopter extends ArrayAdapter<Product> {
Context context;
int layoutResourceId;
List<Product> data = null;
int source;
public ProductAdopter(Context context, int layoutResourceId, List<Product> product_data, int source) {
// TODO Auto-generated constructor stub
super(context, layoutResourceId, product_data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.data = product_data;
this.source = source;
}
// public ProductAdopter(MainActivity context2, int listviewItemRow, List<Product> product_data) {
// TODO Auto-generated constructor stub
//}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
ProductHolder holder = null;
if(row == null && source == 1)
{
LayoutInflater inflater = ((MainActivity)context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new ProductHolder();
holder.imgIcon = (ImageView)row.findViewById(R.id.imgIcon);
holder.txtTitle = (TextView)row.findViewById(R.id.txtTitle);
row.setTag(holder);
}
if(row == null && source == 2)
{
LayoutInflater inflater = ((purchased)context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new ProductHolder();
holder.imgIcon = (ImageView)row.findViewById(R.id.imgIcon);
holder.txtTitle = (TextView)row.findViewById(R.id.txtTitle);
row.setTag(holder);
}
if(row == null && source == 3)
{
LayoutInflater inflater = ((Skiped)context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new ProductHolder();
holder.imgIcon = (ImageView)row.findViewById(R.id.imgIcon);
holder.txtTitle = (TextView)row.findViewById(R.id.txtTitle);
row.setTag(holder);
}
else
{
holder = (ProductHolder)row.getTag();
}
Product product = data.get(position);
holder.txtTitle.setText(product.getName());
if(product.icon.equals("no")){
holder.imgIcon.setImageResource(R.drawable.blank);
}
else{
File imgFile = new File(product.icon);
if(imgFile.exists()){
Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
Bitmap resized = Bitmap.createScaledBitmap(myBitmap, 70, 70, true);
holder.imgIcon.setImageBitmap(resized);
myBitmap.recycle();
}
}
return row;
}
static class ProductHolder
{
ImageView imgIcon;
TextView txtTitle;
}
}
答案 0 :(得分:10)
问题是你的onMenuItemSelected()
中有这一行:
product_data = db.getAllProducts(value);
在onCreate()
中创建适配器后,您为product_data
提供了引用。此时,您对product_data
的更改将传播到适配器,因为它具有对您的列表的引用。
但是,只要您为product_data
变量分配新列表(就像在onMenuItemSelected()
中一样),适配器现在就会引用旧列表,而product_data
现在指向一个新列表。因此,您的适配器不知道您在新列表中的更改。
不要重新分配变量,而是尝试清除它并复制像这样的项目:
product_data.clear();
product_data.addAll(db.getAllProducts(value));
另一方面,如果您从数据库中读取数据,则应考虑改为使用CursorAdapter
。
这是一个简单的教程: http://blog.cluepusher.dk/2009/11/16/creating-a-custom-cursoradapter-for-android/
答案 1 :(得分:0)
代码中的问题是,您正在通知适配器
刷新列表但您没有提供新数据
(I.e after add/remove items.)
对此。
执行以下操作:
if(menuItemIndex == 0) { db.deleteProduct(adapter . Get item(info.position)); product_data = db.getAllProducts(value);
Collections.reverse(product_data);
adapter = new ProductAdopter(this, R.layout.listview_item_row, product_data, 2); ListView listView1 = (ListView)findViewById(R.id.listView1);
listView1.setAdapter(adapter);
//adapter.remove(adapter.getItem(info.position));
//adapter.notifyDataSetChanged();
}
执行此操作即可向适配器提供新数据
因此它将刷新列表视图以显示新的变化
数据甚至没有打电话
adapter.notifyDataSetChanged();
您还需要将列表视图对象设为 全局,以便使用它 在onMenuItemSelected()
中设置新的适配器我希望这能解决你的问题。