Android list view inside a scroll view

后端 未结 30 2096
一向
一向 2020-11-21 13:43

I have an android layout which has a scrollView with a number of elements with in it. At the bottom of the scrollView I have a listView

30条回答
  •  一生所求
    2020-11-21 13:57

    You can easy put ListView in ScrollView! Just need to change height of ListView programmatically, like this:

        ViewGroup.LayoutParams listViewParams = (ViewGroup.LayoutParams)listView.getLayoutParams();
        listViewParams.height = 400;
        listView.requestLayout();
    

    This works perfectly!

提交回复
热议问题