計算listview的條目高度來動態設定listv的高度
阿新 • • 發佈:2019-02-13
有時會遇到一種情況就是給定你一個固定高度了,讓你的條目在裡邊顯示,在條目很多的情況下是沒有問題的,但在條目只有一兩條時就會存在空白,影響美觀,所以動態設定listview也有必要;
首先是計算listview的條目總高度,這個網上一搜一大把:
其實原理就是將每一個條目取出來計算高度相加,最後再加上條目之間的間距高度(這個間距是不能忽略的)
public class Utility {
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);
}
public static int getListViewHeightBasedOnChildren(ListView listView){
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
// pre-condition
return 0;
}
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();
}
int heights= totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
return heights;
}
}
/**
* 填充資料
*/
CarWarnDetailAdapter adapter = new CarWarnDetailAdapter(getActivity());
adapter.setData(cList);
lv.setAdapter(adapter);
/**
*計算listview的條目高度動態設定其高度
*/
int heights = Utility.getListViewHeightBasedOnChildren(lv);
ViewGroup.LayoutParams params = lv.getLayoutParams();
if(heights<335){
params.height = heights;
lv.setLayoutParams(params);
}else{
params.height=335;
lv.setLayoutParams(params);
}
在你將資料新增到介面卡和listview設定介面卡後再進行這些步驟,不然是條目是沒有資料的,高度自然也就沒有;