ScrollView與ListView合用問題(正確計算Listview的高度)

yangxi_001發表於2014-12-08

最近做專案中用到ScrollView和ListView一起使用的問題,顯示的時候ListView不能完全正確的顯示,查了好多資料終於成功解決:

首先,ListView不能直接用,要自定義一個,然後重寫onMeasure()方法:

	@Override
	protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
		int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
				MeasureSpec.AT_MOST);
		super.onMeasure(widthMeasureSpec, expandSpec);
	}

第二步:寫個計算listView每個Item的方法:

public void setListViewHeightBasedOnChildren(ListView listView) {

		// 獲取ListView對應的Adapter

		ListAdapter listAdapter = listView.getAdapter();

		if (listAdapter == null) {

			return;

		}

		int totalHeight = 0;

		for (int i = 0; i < listAdapter.getCount(); i++) { // listAdapter.getCount()返回資料項的數目

			View listItem = listAdapter.getView(i, null, listView);

			listItem.measure(0, 0); // 計運算元項View 的寬高

			totalHeight += listItem.getMeasuredHeight(); // 統計所有子項的總高度

		}

		ViewGroup.LayoutParams params = listView.getLayoutParams();

		params.height = totalHeight
				+ (listView.getDividerHeight() * (listAdapter.getCount() - 1));

		// listView.getDividerHeight()獲取子項間分隔符佔用的高度

		// params.height最後得到整個ListView完整顯示需要的高度

		listView.setLayoutParams(params);

	}

第三步:listview新增介面卡後設定高度即可:

listView.setAdapter(adapter);
new ListViewUtil().setListViewHeightBasedOnChildren(listView);

相關文章