I have a number of elements in a ListView that scroll off the screen.
I would like there to be blank space at the end of the View. That is, the user should be able
Try the followings:
View footer = new View(getActivity()); footer.setLayoutParams( new AbsListView.LayoutParams( LayoutParams.FILL_PARENT, 100 )); // 100 is the height, you can change it. mListView.addFooterView(footer, null, false);