我在向列表视图填充值时遇到了一些困难,列表视图当前没有显示任何行。
首先,我从数据库表中检索值并将它们存储在onPostExecute中的数组中。
LikedListAdapter listAdapter = new LikedListAdapter(context, R.layout.liked_list_main, restID, restName, restAddr1, restAddr2, restImgPath);
lvPlaces.setAdapter(listAdapter);
然后,这些值成功传递到我的ListAdapter。
public LikedListAdapter(Context context, int resource, String[] restID, String[] restName, String[] restAddr1, String[] restAddr2, String[] restImgPath) {
super(context, resource);
this.context = context;
this.resource = resource;
this.restID = restID;
this.restName = restName;
this.restAddr1 = restAddr1;
this.restAddr2 = restAddr2;
this.restImgPath = restImgPath;
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
LinearLayout likedItemsView;
if(convertView==null) {
likedItemsView = new LinearLayout(getContext());
String inflater = Context.LAYOUT_INFLATER_SERVICE;
LayoutInflater vi;
vi = (LayoutInflater)getContext().getSystemService(inflater);
vi.inflate(resource, likedItemsView, true);
}
else {
likedItemsView = (LinearLayout) convertView;
}
ImageView restaurantImg = (ImageView)likedItemsView.findViewById(R.id.listItemThumbImg);
TextView restaurantName =(TextView)likedItemsView.findViewById(R.id.listItemTitle);
TextView restaurantDesc = (TextView)likedItemsView.findViewById(R.id.listItemSubText);
restaurantName.setText(restName[position]);
restaurantDesc.setText(restAddr1[position] + ", " + restAddr2[position]);
Picasso
.with(getContext())
.load(restImgPath[position])
.into(restaurantImg);
return likedItemsView;
}
但是,当我运行应用程序时,Listview为空。调试时我注意到值已成功传递给我的listAdapter(在调试时显示检索到的值显示在构造函数中)但是它永远不会访问方法getView,其中值设置为每个listview小部件。
我有什么误解,或者我是否需要在某个时候调用getView方法?提前谢谢。
答案 0 :(得分:1)
您是否覆盖
getCount将()
方法?如果没有,则返回行的大小。实施例 -
@Override
public int getCount() {
return restName.length;
}
希望你的问题能够得到解决。如果已填充列表,则使用
adapter.notifyDataSetChanged()
方法
答案 1 :(得分:0)
LikedListAdapter listAdapter = new LikedListAdapter(context, R.layout.liked_list_main, restID, restName, restAddr1, restAddr2, restImgPath);
lvPlaces.setAdapter(listAdapter);
listAdapater.notifyDataSetChanged(); // <-- add this