我有一个使用ListView的购物车,我在ListView页脚上显示总计。 我已使用,
将页脚视图添加到listViewGetShoppingCartItems - 获取购物车中的当前项目
fillBasketSummary创建页脚
DoRemoveCartItem - 从购物车中删除商品
private Handler handler = new Handler()
{
public void handleMessage(Message msg)
{
fillBasketSummary() ;
dialog.dismiss() ;
}
} ;
private void GetShoppingCartItems()
{
try {
WsFpUser wsfp = myapp.getWsFP_User() ;
products = wsfp.GetBasketOrderItems(loggedInUser.ID);
} catch (Exception e) {
}
handler.sendEmptyMessage(0);
}
private void fillBasketSummary()
{
try {
LayoutInflater inflater = this.getLayoutInflater();
View footerView = inflater.inflate(R.layout.basket_footer, null);
ListView lst = (ListView) findViewById(R.id.basket_listItems);
lst.addFooterView(footerView);
if (adapter != null)
{
adapter.products.clear() ;
adapter.notifyDataSetChanged() ;
}
if (products != null)
{
lstProducts = (ListView) findViewById(R.id.basket_listItems);
adapter = new ProductsAdapter(getApplicationContext(), products);
lstProducts.setAdapter(adapter);
}
else
{
// show message "cart empty"
}
float subTotal = 0.0f ;
DecimalFormat df = new DecimalFormat("#0.00");
TextView txtSubTotal = (TextView) footerView.findViewById(R.id.basket_txtSubTotal);
if (products != null)
{
for (int i =0; i< products.size() ; i ++)
{
float price = Float.parseFloat(product.itemPrice) ;
float discount = Float.parseFloat(product.itemDiscount) ;
int quantity = Integer.parseInt(product.quantity);
subTotal = subTotal + (price - discount) * quantity ;
}
txtSubTotal.setText("£ " + df.format(subTotal));
}
} catch (Exception e)
{
Log.e("err",e.toString());
e.printStackTrace();
}
}
public void DoRemoveCartItem(final int itemIndex)
{
dialog = ProgressDialog.show(this, "",
"Loading. Please wait...", true);
Thread t = new Thread( new Runnable() {
public void run()
{
boolean bRemove = false;
WsFpUser wsfpUser = myapp.getWsFP_User() ;
CardItem cardItem = products.get(itemIndex);
try
{
bRemove = wsfpUser.RemoveOrderItem(cardItem.orderID);
} catch (Exception e) {
e.printStackTrace();
}
if (bRemove)
{
GetShoppingCartItems();
}
else
{
// error
}
}
}) ;
t.start() ;
}
要删除项目,我调用DoRemoveCartItem()然后调用“GetShoppingCartItems()”获取当前项目列表,然后重建列表
每次用户从列表中删除项目时,我都会重新计算总计并执行上述过程再次添加页脚。
问题是当从列表中删除项目时,页脚值不会更新。
我做错了什么?
答案 0 :(得分:0)
似乎你添加页脚的顺序对它的创建方式有一些影响。我做了以下工作以使其正常工作
ListView lst = (ListView) findViewById(R.id.basket_listItems);
if (lst.getFooterViewsCount() > 0)
{
lst.removeFooterView(footerView);
}
LayoutInflater inflater = this.getLayoutInflater();
footerView = inflater.inflate(R.layout.basket_footer, null);
lst.addFooterView(footerView);
this.onContentChanged();
if (adapter != null)
{
...
this.onContentChanged(); 是关键线。
它似乎再次创建ListView。我不确定这是否正确,但它对我有用。