2017-07-26 19 views
2

我有一个使用sqlite的应用程序,它存储有关硬件存储项目的信息并将它们显示在一个ListView中,此列表视图显示项目的名称,价格,数量和供应商。每个列表项还有一个Sell按钮,当我点击按钮时,它应该从该特定项目的数量中减去1并更新数据库,但由于该按钮是在CursorAdapter中创建的,因此不确定如何访问数据库并更新它。如何更新ListView项目中的SQLite行?

这是我的CursorAdapter:

package com.example.android.inventoryapp; 

import android.content.Context; 
import android.database.Cursor; 
import android.support.v4.widget.CursorAdapter; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.view.ViewGroup; 
import android.widget.ImageView; 
import android.widget.TextView; 

import com.example.android.inventoryapp.data.InventoryContract.InventoryEntry; 


public class InventoryCursorAdapter extends CursorAdapter { 


    public InventoryCursorAdapter(Context context, Cursor cursor) { 
     super(context, cursor, 0); 
    } 

    @Override 
    public View newView(Context context, Cursor cursor, ViewGroup parent) { 
     return LayoutInflater.from(context).inflate(R.layout.list_item, parent, false); 
    } 

    @Override 
    public void bindView(View view, Context context, Cursor cursor) { 

     TextView itemNameView = view.findViewById(R.id.item_name); 
     TextView itemPriceView = view.findViewById(R.id.item_price); 
     TextView itemQuantityView = view.findViewById(R.id.item_quantity); 
     TextView itemSupplierView = view.findViewById(R.id.item_supplier); 

     ImageView sellButton = view.findViewById(R.id.sell_button); 

     int nameColumnIndex = cursor.getColumnIndex(InventoryEntry.COLUMN_ITEM_NAME); 
     int priceColumnIndex = cursor.getColumnIndex(InventoryEntry.COLUMN_ITEM_PRICE); 
     int quantityColumnIndex = cursor.getColumnIndex(InventoryEntry.COLUMN_ITEM_QUANTITY); 
     int supplierColumnIndex = cursor.getColumnIndex(InventoryEntry.COLUMN_ITEM_SUPPLIER); 

     int quantity = cursor.getInt(quantityColumnIndex); 

     String name = cursor.getString(nameColumnIndex); 
     String price = String.valueOf(cursor.getInt(priceColumnIndex)) + context.getString(R.string.currency_symbol); 
     String quantityStr = String.valueOf(quantity); 
     String supplier = cursor.getString(supplierColumnIndex); 

     itemNameView.setText(name); 
     itemPriceView.setText(price); 
     itemQuantityView.setText(quantityStr); 
     itemSupplierView.setText(supplier); 

    } 

} 

回答

1

在你的活动,保持适配器参考,创建内部类是这样的:当你创建适配器

public class MyClickListener { 
    public void handleClick(Item item) { 
     // access your DB here, {item} is available if you need the data 
    } 
    } 

然后

myAdapter = new InventoryCursorAdapter(context, cursor, new MyClickListener()); 

保存对适配器中该点击侦听器的引用。

然后在适配器的BindView方法(如果你需要的项目数据来更新数据库,使其通过点击收听)

sellButton.setOnClickListener(new View.OnClickListener() { 
    @Override 
    public void onClick(View v) { 
     Item item = myItemSet.get(position); 
     myListener.handleClick(item); 
    } 
}); 
+0

你是天才!谢谢 –

+0

现在我的问题是,我只能改变我第一次点击的ListItem,我不知道如何知道什么ListItem的sellButton属于 –

+0

你可能需要传递handleClick()中的其他信息,如果你需要一个特定的方式来识别信息,但由于您在handleClick()中传递每个特定游标的数据,因此您应该拥有所需的一切。 – Chad