カードを水平方向にスクロールできる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>
リストビュー アイテムを膨張させて線形レイアウトに追加します。このような制限(横縦同時スクロール)がなくスムーズに縦横スクロールできるようにしたいと考えています。
どうすればこれを達成できますか?