首页 > 其他 > 详细

ScrollView与listview并用

时间:2014-03-07 17:56:48      阅读:466      评论:0      收藏:0      [点我收藏+]

/**
* @Title: setListViewHeightBasedOnChildren
* @Description: 计算listview高度
* @param @param listView 设定文件
* @return void 返回类型
* @throws
*/
public void setListViewHeightBasedOnChildren(ListView 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();
}
LayoutParams params = listView.getLayoutParams();
params.height = totalHeight+ (listView.getDividerHeight() * (listAdapter.getCount() - 1));
listView.setLayoutParams(params);
}

ScrollView与listview并用,布布扣,bubuko.com

ScrollView与listview并用

原文:http://www.cnblogs.com/clarence/p/3586836.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!