how to calculate the height of ListView ?
since ScrcollView is not allow to add a scrollable listview
so you have to findout the listview hieght after it's created.
here is is the usefull LINK
see the code snippet:
==================================
public static void setListViewHeightBasedOnChildren(ListView listView) {
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
// pre-condition
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();
}
ViewGroup.LayoutParams params = listView.getLayoutParams();
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
listView.setLayoutParams(params);
}
===================================
0 個意見:
張貼留言
訂閱 張貼留言 [Atom]
<< 首頁