我正在尝试构建以下布局逻辑:
- Block C 和 Block B 可以上下滚动,此时 Block A 不滚动;
- Block A 和 Block B 可以左右滚动,此时 Block C 不滚动;
任何想法如何做到这一点?
我目前的解决方案是:
我的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>