我想滚动列表视图。但列表视图仅在列表视图的项目超过屏幕长度时滚动。但我想滚动列表视图是否列表视图有一项或十项。我使用过此代码但它不起作用,也搜索了很多但没有找到关于这个的教程。所以请建议我如何做到这一点。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingTop="10dp" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >
<EditText
android:id="@+id/etSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="98"
android:background="@drawable/search_shape"
android:cursorVisible="false"
android:gravity="center"
android:imeOptions="actionSearch"
android:singleLine="true" >
</EditText>
<Button
android:id="@+id/SearchBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="2"
android:background="@drawable/search_selector" />
</LinearLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/moreBtn"
android:layout_below="@+id/etSearch"
android:scrollbarStyle="outsideInset"
android:layout_marginTop="10dp" >
</ListView>
<Button
android:id="@+id/moreBtn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/more_selector"
android:visibility="gone" />
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="invisible" />
</RelativeLayout>
</LinearLayout>