我是Android新手有这个问题制作一个滚动视图,它应该滚动超过10个项目的ListView。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.naqishop.naqi.MainActivity"
tools:showIn="@layout/activity_main">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/scrollView">
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listView"
android:entries="@array/options" />
</ScrollView>
</LinearLayout>
问题在于我无法扩展滚动视图以一次显示多个项目。我试图篡改滚动视图的layout_height
(比如将值赋给500dp
)
我还尝试添加
android:fillViewport="true"
建议here 但它没有改变高度。非常感谢您的提示。
答案 0 :(得分:2)
这是因为您已设置android:layout_height="wrap_content"
。替换为
android:layout_height="match_parent"
并且它会占据整个高度。