0

Android I の通常のチェックボタンの代わりに、複数の ListView を並べて (水平に) 表示し、それぞれがスクロール可能であり、1 つのスクロールが他のスクロール位置を変更せず、それを拡張することもしたいと考えていました。私の画像を使用したいです。

PS: ここでは HoneyComb を使用します。

これが私が欲しかったもののサンプルスクリーンショットです。

どのように進めるべきかの助けをいただければ幸いです。これがビューのxmlです。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:splitMotionEvents="true">
    <ListView android:id="@+id/list1" android:layout_width="0dip" android:layout_height="match_parent" android:layout_weight="1" />
    <ListView android:id="@+id/list2" android:layout_width="0dip" android:layout_height="match_parent" android:layout_weight="1" />
    <ListView android:id="@+id/list3" android:layout_width="0dip" android:layout_height="match_parent" android:layout_weight="1" />
</LinearLayout>

ここに画像の説明を入力

4

1 に答える 1