我们如何在嵌套滚动中赋予优先权?想象一下,我们有一个ListView
,其中包含需要滚动的大行。现在我们想在内部布局滚动完成时让ListView
滚动。
答案 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>
使用这个希望它会帮助你