android 动态设置ListView 高度

/**
 * 根据集合数据大小改变页面的 伸张高度
*  listView名称: more_housing
 */
ListAdapter listAdapter = more_housing.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, more_housing);
listItem.measure(0, 0);
totalHeight += listItem.getMeasuredHeight();
}
ViewGroup.LayoutParams params = more_housing.getLayoutParams();
params.height = totalHeight
+ (more_housing.getDividerHeight() * (listAdapter
.getCount() - 1));
((MarginLayoutParams) params).setMargins(10, 10, 10, 10); // 可删除
more_housing.setLayoutParams(params);
 
 
 
 
 
 
 
 
 
看不懂的联系我:qq 530343252,    938355267               网站: 更多查看
发布了3 篇原创文章 · 获赞 4 · 访问量 1088

猜你喜欢

转载自blog.csdn.net/maziqiang1993/article/details/9244847