http://stackoverflow.com/questions/28913115/android-list-view-inside-a-scroll-view-auto-scroll-issue
Add android:descendantFocusability="blocksDescendants"
to child of SrollView (and parent of ListView)
<ScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants">