Android ScrollView中嵌套ListView

Posted mfmdaoyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ScrollView中嵌套ListView相关的知识,希望对你有一定的参考价值。

由于要做一个相似美团的团购产品。scrollview中还有嵌入listview,要是直接把listview嵌进scrollview中。listview的高度是固定的不能进行滑动。默认情况下android是禁止在ScrollView中放入另外的ScrollView的,它的高度是无法计算的。这就导致里面的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);
        }
    }


仅仅要在设置ListView的Adapter后调用此静态方法就可以让ListView正确的显示在其父ListView的ListItem中。

可是要注意的是,子ListView的每一个Item必须是LinearLayout,不能是其它的,由于其它的Layout(如RelativeLayout)没有重写onMeasure(),所以会在onMeasure()时抛出异常。

这样就能够实现scrollview加listview的 嵌套复杂布局了。


以上是关于Android ScrollView中嵌套ListView的主要内容,如果未能解决你的问题,请参考以下文章

Android ScrollView中嵌套ListView

android中Scrollview嵌套WebView问题

android scrollview嵌套listview 页面有多余空白

Android之ScrollView嵌套ListView

android解决ScrollView嵌套ListView不能下拉刷新

android scrollview 嵌套listview 不滑动