int totalHeight = 0;for (int i = 0; i < mStrings.length; i++) { //pullList ListView //mAdapter Adapter View listItem = mAdapter.getView(i, null, pullList); listItem.measure(0, 0); totalHeight += listItem.getMeasuredHeight();}ViewGroup.LayoutParams params = pullList.getLayoutParams();params.height = totalHeight + (pullList.getDividerHeight() * (mAdapter.getCount() - 1));pullList.setLayoutParams(params);
1.