在Android中的单个布局中添加多个ListView列表

时间:2015-04-23 20:16:49

标签: android android-listview

我正在尝试在布局xml中添加3个或更多列表。我并不认为这是一个问题,但我没有看到所有列表(并且它们已经填充)并且视图不会滚动。对于我在这里做的蠢事,我需要一个意见。

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/googleDrawer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white" >

    <RelativeLayout
        android:id="@+id/navigationHeader"
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:background="@drawable/wallpaper"
        android:paddingTop="16dp" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_margin="@dimen/activity_horizontal_margin"
            android:orientation="vertical" >

            <EditText
                android:id="@+id/searchTxt"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Search" />

            <TextView
                android:id="@+id/txtUsername"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_green_light"
                android:text="Hello, user"
                android:textColor="@android:color/white"
                android:textSize="14sp"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/txtDescription"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/holo_blue_light"
                android:text="description"
                android:textColor="@android:color/white" />
        </LinearLayout>
    </RelativeLayout>

    <ScrollView
        android:id="@+id/scrollojt"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@id/navigationHeader"
        android:fillViewport="true" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="@dimen/activity_horizontal_margin" >

            <View
                android:id="@+id/separator"
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:layout_marginBottom="8dp"
                android:background="#1f000000" />

            <TextView
                android:id="@+id/questionsTitle"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/separator"
                android:text="@string/questions_label"
                android:textAllCaps="true"
                android:textColor="@android:color/black" />

            <ListView
                android:id="@+id/drawerList"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/questionsTitle"
                android:background="@android:color/holo_green_dark"
                android:clickable="true"
                android:focusableInTouchMode="true"
                android:scrollbars="vertical" />

            <TextView
                android:id="@+id/appsTitle"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/drawerList"
                android:text="@string/apps_label"
                android:textAllCaps="true"
                android:textColor="@android:color/black" />

            <ListView
                android:id="@+id/drawerList2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/appsTitle"
                android:background="@android:color/holo_red_dark"
                android:clickable="true"
                android:focusableInTouchMode="true"
                android:scrollbars="vertical" />

            <TextView
                android:id="@+id/groupsTitle"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/drawerList2"
                android:text="@string/groupapps_label"
                android:textAllCaps="true"
                android:textColor="@android:color/black" />

            <ListView
                android:id="@+id/drawerList3"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/groupsTitle"
                android:background="@android:color/holo_blue_bright"
                android:clickable="true"
                android:focusableInTouchMode="true"
                android:scrollbars="vertical" />

            <TextView
                android:id="@+id/dmTitle"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/drawerList3"
                android:text="@string/directapps_label"
                android:textAllCaps="true"
                android:textColor="@android:color/black" />

            <ListView
                android:id="@+id/drawerList4"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/dmTitle"
                android:background="@android:color/holo_green_light"
                android:clickable="true"
                android:focusableInTouchMode="true"
                android:scrollbars="vertical" />
        </RelativeLayout>
    </ScrollView>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

只使用一个ListView和ArrayAdapter。

how to use arrayadapter

如果您需要帮助自定义阵列适配器,只需在谷歌搜索或问我;)