For Romain Guy
This is not an attempt to hijack this thread. The message was simply too big for the comment box.
I have similar needs and I feel like this answer has not been evaluated to its real value. Whether this is expensive to do or not, the final decision is ours. You alone or even an entire team cannot possibly have thought about all the possible use cases of a ListView.
Here is my use case:
I am using a custom adapter to attach some custom data to a custom ListView. The data is a mix of database content and a thumbnail from one of 3 possible places (Fallback between Assets --> SD-Card --> Web location). The entire thing is stored in an ArrayList of objects. The generated ListView is sometimes displayed alone, and some other times it is displayed below a WebView that shows a rich content (HTML formatting, text wrapping around images, occasional hyperlinks). The contents (hence the heights) of the ListView and the WebView depend on whatever the user has put using the back-end CMS. So most of the time, the WebView will take from 25% to 70% of the display area and the ListView will continue beyond the boundaries of the screen. How can you make the entire screen content scroll without having the ListView scrolling within a tiny confined area which is by the way user unfriendly. The same thing happens also when you need a short description displayed above the list view. In such case, the list will scroll while the description is permanently visible.
I have a suggestion since you seem to be in charge of the ListView. The ListView should be able to give up its ability to scroll. Then in that case, it will use the position of the parent scroll to determine how to call getView(...).