如何在具有多个列表视图的单个屏幕中安装大型布局

时间:2012-06-22 12:56:16

标签: android listview scrollview

enter image description here我正在处理一个项目,其中我必须做的是有两个列表,布局非常大,你可以说它只是正常布局的两倍。我必须添加滚动视图来显示整个布局,但问题是滚动视图中不能有一个列表,如果我这样做,那么编译器有歧义,如果它是列表或滚动视图滚动。现在我该怎么做才能提前感谢...

我还附上一张图片,这是我布局的一半......

enter image description here

1 个答案:

答案 0 :(得分:1)

从您的查询中我设计了一个示例XML文件:

<?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" >

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#ffffff" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:background="#ffffeabc" >
        </LinearLayout>
    </LinearLayout>
</ScrollView>

在上面你将有更高的视图的滚动视图,你也有相同比例的列表视图。你必须集中精力在android:layout_weight,你应该检查如何使用体重属性

修改:

好的一件事是,我们可以使用列表视图的页眉页脚概念 - 将ImageView和第二列表视图作为第一列表视图的页脚,以便ImageView和第二列表视图将始终位于第一个列表视图下方 ..

For Header Footer concept check this Link