We\'ve all been advised against nesting views that contain a scrolling mechanism. However, in the latest Android release (5.0), the Phone app caught my attention with what s
You can use the following combination of attributes on your ListView to achieve this:
ListView
android:clipToPadding="false" ... />
You don't have to manage any scrolling in your code at all, and it requires no header/dummy views in your list adapter.