android界面之ScrollView嵌套ListView冲突问题

问题描述:
ScrollView与ListView的冲突
详细描述:
ScrollView中嵌套ListView,其中ListView的属性设置成:
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
结果ListView中的Item只显示一行;接着将ListView的高度属性设置成固定的高度虽然可以显示多行,但是不能完全显示所有的Item项。


解决办法:
为不使ListView的高度定死,采取动态获取ListView高度的方法。

 

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();
        }

        ViewGroup.LayoutParams params = listView.getLayoutParams();
        params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
        params.height += 5;//if without this statement,the listview will be a little short
        listView.setLayoutParams(params);
    }


 

你可能感兴趣的:(android界面之ScrollView嵌套ListView冲突问题)