从android中的列表中检索数据

时间:2015-03-30 09:13:38

标签: android arraylist

我的活动中有私人List<Product> mCartList;。当我调试时,我得到了mCartList的一些值,我在下面的屏幕截图中显示了它们。

enter image description here

现在我想在mCartList内进行,所以我尝试了下面的代码。我在代码的每一行都收到错误Syntax error, insert "AssignmentOperator Expression" to complete Expression。从mCartList中检索数据时我犯了什么错误。

for (int i = 0; i < mCartList.size(); i++) {
            mCartList.get(i).selected = false;
            mCartList.get(i).crust;
            mCartList.get(i).description;

如果有人能纠正我,真的很棒。

已更新

enter image description here

0 个答案:

没有答案