具有两个列表视图的Android可滚动活动

时间:2014-08-08 14:10:11

标签: android android-layout listview android-listview android-xml

我有2个listviews,每个都有一个适配器,我需要在一个活动中显示它,比如联系人android app,问题是,我无法让整个活动滚动,看到图片了解更好的我正在寻找,这是mu xml:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">


    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >


        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="TELEFONES"
            android:textColor="#00CC66"
            style="?android:attr/listSeparatorTextViewStyle"/>

        <ListView
            android:id="@+id/listView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingTop="25dp"
            android:layout_marginTop="25dp"

            >
        </ListView>
        <TextView
            style="?android:attr/listSeparatorTextViewStyle"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="EMAILS"
            android:textColor="#00CC66"
            android:id="@+id/textView"

            android:layout_below="@+id/listView1" />


        <ListView
            android:id="@+id/listView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/listView1"
            android:paddingTop="25dp"


            >

        </ListView>
    </RelativeLayout>
    </LinearLayout>

This is the current layout This is what I'm trying to achieve

这就是我要找的,滚动整个活动

0 个答案:

没有答案