I should want a non scrollable ListView, and show the entire ListView. It\'s because my entire screen is a ScrollView, and I dispatch widgets with a RelativeLayout, so I don
to disable scrolling you can use listview.setEnabled(false)
listview.setEnabled(false)
This also disables row selections.