2

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

4

1 回答 1

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

用这个希望对你有帮助

于 2013-07-18T07:55:17.713 回答