我想创建一种卡片布局,其中包含可以水平滚动卡片的ListView
布局。HorizontalScrollableView
一切正常,但滚动有问题。只有当我不水平滚动卡片时,我才能垂直滚动列表视图,反之亦然。
这是主容器:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<HorizontalScrollView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ddd" >
<LinearLayout
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="horizontal" >
</LinearLayout>
</HorizontalScrollView>
</RelativeLayout>
我膨胀并将列表视图项目添加到线性布局。我希望在没有这些限制的情况下平滑地进行垂直和水平滚动(同时水平和垂直滚动)。
我怎样才能做到这一点?