我想知道如何ListView
通过计算项目视图来设置高度,有人这样说。
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(0, 0);
totalHeight += listItem.getMeasuredHeight();
}
ListView
但是,如果我将基于 的类放入BaseAdapter
呢?