1

我正在尝试构建以下布局逻辑:

在此处输入图像描述

  1. Block C 和 Block B 可以上下滚动,此时 Block A 不滚动;
  2. Block A 和 Block B 可以左右滚动,此时 Block C 不滚动;

任何想法如何做到这一点?

4

1 回答 1

0

我目前的解决方案是:

  1. 在 Horizo​​ntalScrollView1 中包装块 A 的内容
  2. 在 Horizo​​ntalScrollView2 中包装 B 块的内容
  3. 在 LinearLayout 中包装 Block C 和 Block B 的内容
  4. 在 ScrollView 中包装 LinearLayout
  5. 同步 Horizo​​ntalScrollView1 和 Horizo​​ntalScrollView2 的滚动,如 同步 ScrollView 滚动位置 - 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 回答