我们说我有5个项目(product1,...,product5)。
现在我想更新第3个产品(product3)的价格。
我打电话给updateView(3)
到目前为止我的updateView(int index)方法
private void updateView(int index){
// thats how I get the row
View v = lvProduct.getChildAt(index);
// now I want to find the tvPrice in that row
// but I'm not sure how to go about this
}
任何提示都会很棒:D
答案 0 :(得分:0)
我通常采用的方法是执行以下操作:
我希望这有帮助!