0

I can't scroll the list view that is inside the scroll view.I tried using nested scroll view but it still dosen't work. hope I'll get some help here :)

Ofir
  • 1
  • 1

1 Answers1

0

Generally, It is not recommended to use this technique. You can use your ListView with Headers and Footers to eliminate the use of scrollView.

If you are still bent on using ListView inside ScrollView(Not recommended). Here is a hack: Android list view inside a scroll view

TLDR; The shortest & easiest solution for any ChildView to scroll inside a ScrollView. Anything like ListView, RecyclerView, etc. You do not have to do anything special in code.

Just replace ScrollView with android.support.v4.widget.NestedScrollView in your current xml and then magic happens.

Pranjal
  • 8,083
  • 3
  • 8
  • 13