2

在我的活动中,我有三个列表。运行应用程序后,屏幕无法滚动。我可以滚动位于其他列表之上的列表,但我无法滚动整个页面。我试图添加ScrollView到我的 xml 布局中,但 lint 说“垂直滚动的 ScrollView 不应包含另一个垂直滚动的小部件(ListView)”。

如何使我的屏幕可滚动?

4

5 回答 5

2

试试这个方法

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

    <LinearLayout android:id="@+id/GlobalLayout" 
                  android:layout_width="fill_parent"
                  android:layout_height="fill_parent"
                  android:orientation="vertical" >

        <ListView android:id="@+id/ListView1"
                  android:choiceMode="multipleChoice"
                  android:layout_height="100dip"
                  android:layout_width="fill_parent" />
       <ListView android:id="@+id/ListView2"
                  android:choiceMode="multipleChoice"
                  android:layout_height="100dip"
                  android:layout_width="fill_parent" />
       <ListView android:id="@+id/ListView3"
                  android:choiceMode="multipleChoice"
                  android:layout_height="100dip"
                  android:layout_width="fill_parent" />

    </LinearLayout>

</ScrollView>
于 2012-05-08T10:32:18.180 回答
1

它不起作用,因为 android 不知道他应该滚动哪个视图,所以将 alistview放入scrollview它不是一个好主意。尝试使用visibilty属性,使用HIDE您完成的视图并设置VISIBLE新的。或使用一个ListView并在完成和开始指令后尝试填充和删除项目。希望对你有帮助

于 2013-05-21T18:08:55.963 回答
1

在此处输入图像描述

<ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <ListView
                android:id="@+id/listView1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1" >
            </ListView>

        </LinearLayout>

    </ScrollView>

Scrollview 支持一种子布局,因此请在滚动中创建列表视图,这样您就可以获得所需的内容。

于 2012-05-08T10:31:48.977 回答
0

您可以做的是,您可以通过膨胀将页眉和页脚添加到列表视图中。创建三个 xml 布局并使用页眉和页脚将它们添加到列表视图中。

    View headerView = View.inflate(this, R.layout.layout_name, null);
    lv.addHeaderView(headerView);

在设置适配器之前使用它。lv 是列表视图。

于 2012-05-08T10:40:48.330 回答
0

使用此方法,您的列表视图在滚动视图内变为可滚动:-

   ListView lstNewsOffer.setAdapter(new ViewOfferAdapter(
                            ViewNewsDetail.this, viewOfferList));
                    getListViewSize(lstNewsOffer);

void getListViewSize(ListView myListView) {
    ListAdapter myListAdapter = myListView.getAdapter();
    if (myListAdapter == null) {
        // do nothing return null
        return;
    }
    // set listAdapter in loop for getting final size
    int totalHeight = 0;
    for (int size = 0; size < myListAdapter.getCount(); size++) {
        View listItem = myListAdapter.getView(size, null, myListView);
        listItem.measure(0, 0);
        totalHeight += listItem.getMeasuredHeight();
    }
    // setting listview item in adapter
    ViewGroup.LayoutParams params = myListView.getLayoutParams();
    params.height = totalHeight
            + (myListView.getDividerHeight() * (myListAdapter.getCount() - 1));
    myListView.setLayoutParams(params);
    // print height of adapter on log
    Log.i("height of listItem:", String.valueOf(totalHeight));
}
于 2014-10-31T12:23:03.223 回答