I have an android layout which has a scrollView with a number of elements with in it. At the bottom of the scrollView I have a listView
scrollView
listView
You can easy put ListView in ScrollView! Just need to change height of ListView programmatically, like this:
ViewGroup.LayoutParams listViewParams = (ViewGroup.LayoutParams)listView.getLayoutParams(); listViewParams.height = 400; listView.requestLayout();
This works perfectly!