我正在使用Parse爲我的後端,並使用ParseQueryAdapter填充listview.根據他們的Android Guide,我應該重寫他們的getItemView方法來定製我的行項目。這裏的代碼getItemView沒有定義類型活動
public View getItemView(ParseObject object, View v, ViewGroup parent) {
super.getItemView(object, v, parent);
if (v == null) {
v = View.inflate(getContext(), R.layout.adapter_item, null);
}
TextView descriptionView = (TextView) v.findViewById(R.id.description);
descriptionView.setText(object.getString("description"));
return v;
}
返回的錯誤是:The method getItemView is not defined for the type Activity