How to scroll layout which have 3 list view

后端 未结 5 770
情歌与酒
情歌与酒 2021-02-08 02:13

I have one layout. This layout contain 3 list view with the height of wrap_content data in the Listview are not fix. When Listview have a liitel huge data at that time the data

5条回答
  •  再見小時候
    2021-02-08 02:36

    You should use weight attribute android:layout_weight="1" in each ListView in XML layout. So that it will divide the screen with equal space for each listview and your scrolling will work for each ListView.

提交回复
热议问题