嵌套滚动

时间:2013-07-18 07:43:29

标签: android android-listview scrollview

我们如何在嵌套滚动中赋予优先权?想象一下,我们有一个ListView,其中包含需要滚动的大行。现在我们想在内部布局滚动完成时让ListView滚动。

1 个答案:

答案 0 :(得分:-1)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    >

      <ScrollView  
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/poicroll"
    >

       <RelativeLayout
           android:id="@+id/addLay"
           android:layout_width="match_parent"
           android:layout_height="490dp"
           android:paddingLeft="10dp"
           android:paddingRight="5dp"
           android:paddingTop="10dp" >


//Your Data/ Content here





 <HorizontalScrollView
        android:layout_below="@+id/btnSavePOI"
        android:layout_width="match_parent"
        android:layout_height="wrap_content >


//Your Listview here


    </HorizontalScrollView>

         </RelativeLayout>

</RelativeLayout>

使用这个希望它会帮助你