1

次のレイアウトロジックを構築しようとしています:

ここに画像の説明を入力

  1. ブロック C とブロック B は上下にスクロールできますが、このときブロック A はスクロールされません。
  2. ブロック A とブロック B は左右にスクロールできますが、このときブロック C はスクロールされません。

それを行う方法はありますか?

4

1 に答える 1

0

私の現在の解決策は次のとおりです。

  1. ブロック A のコンテンツを Horizo​​ntalScrollView1 でラップする
  2. ブロック B のコンテンツを Horizo​​ntalScrollView2 でラップする
  3. ブロック C とブロック B のコンテンツを LinearLayout でラップする
  4. ScrollView で LinearLayout をラップする
  5. ScrollView のスクロール位置の同期のように、Horizo​​ntalScrollView1 と Horizo​​ntalScrollView2 のスローリングを 同期する - Android

私のxml:

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="40dp"
        android:orientation="vertical" >

        <com.widget.ObservableHorizontalScrollView
            android:id="@+id/horizontalScrollView1"
            android:layout_marginLeft="200dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="horizontal" >
            </LinearLayout>
        </com.widget.ObservableHorizontalScrollView>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <ScrollView
            android:id="@+id/scrollView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >

                <LinearLayout
                    android:id="@+id/channel_layout"
                    android:layout_width="200dp"
                    android:layout_height="wrap_content"
                    android:orientation="vertical" >
                </LinearLayout>

                <com.widget.ObservableHorizontalScrollView
                    android:id="@+id/horizontalScrollView2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" >

                    <LinearLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:orientation="vertical" >
                    </LinearLayout>
                </com.widget.ObservableHorizontalScrollView>

            </LinearLayout>

        </ScrollView>

    </LinearLayout>

</LinearLayout>
于 2013-04-04T14:40:04.823 に答える