【发布时间】:2020-02-21 08:42:49
【问题描述】:
我需要在 ScrollBar 中放置一个 ListView。我知道关于这个主题还有其他问题,但答案非常复杂和糟糕。
ListView 不显示它的所有元素,只显示第一个。
我的相关代码的主要结构:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
....MORE ELEMENTS....
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
></ListView>
</LinearLayout>
</ScrollView>
</RelativeLayout>
【问题讨论】:
-
尝试在滚动视图中设置 layout_height="match_parent" 并在滚动视图中添加“android:fillViewport=true”
标签: android xml layout interface