我正在根据本教程构建自己的 ListView。
这一行:
MessageDetails msg = _data.get(position);
在他的代码中给了我一个问题。我显然收到了这条线的类型错误。我不明白他的代码是如何工作的。我应该做些什么不同的事情,这样我才能让它像他一样工作。
编辑
我知道这条线的问题在于它试图将两种不同的类型放在一起MessageDetails
,并且ArrayList<String>
. 他的教程没有给我一个好的方法,因为我得到了错误,而他显然没有。
我的适配器类
public class MenuItemAdapter extends BaseAdapter {
private ArrayList<String> _data;
Context _c;
MenuItemAdapter(ArrayList<String> data, Context c){
_data = data;
_c = c;
}
public int getCount() {
return _data.size();
}
public Object getItem(int position) {
return _data.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater) _c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.menuitemrow, null);
}
ImageView image = (ImageView) v.findViewById(R.id.MIR_itemImage);
TextView itemName = (TextView)v.findViewById(R.id.MIR_itemImage);
TextView itemDescription = (TextView)v.findViewById(R.id.MIR_itemDescription);
TextView itemPrice = (TextView)v.findViewById(R.id.MIR_itemPrice);
TextView itemOther = (TextView)v.findViewById(R.id.MIR_itemOther);
// Create instance of MenuItemDetail and then assign
MenuItemDetail mid = _data.get(position);
image.setImageResource(mid.icon);
itemName.setText(mid.itemName);
itemDescription.setText(mid.itemDescription);
itemPrice.setText(mid.itemPrice);
itemOther.setText(mid.itemOther);
return v;
}
}
这是我的MenuItemDetail
课程,与他的课程非常相似,只是我的领域。
public class MenuItemDetail {
int icon;
String itemName;
String itemDescription;
String itemPrice;
String itemOther;
public int getIcon() {
return icon;
}
public void setIcon(int icon) {
this.icon = icon;
}
public String getItemName() {
return itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getItemDescription() {
return itemDescription;
}
public void setItemDescription(String itemDescription) {
this.itemDescription = itemDescription;
}
public String getItemPrice() {
return itemPrice;
}
public void setItemPrice(String itemPrice) {
this.itemPrice = itemPrice;
}
public String getItemOther() {
return itemOther;
}
public void setItemOther(String itemOther) {
this.itemOther = itemOther;
}
}
任何帮助和解释将不胜感激。
我还必须ArrayList
在需要ArrayList<String>
. 不确定该更改是否是错误的地方。