次のレイアウトロジックを構築しようとしています:
- ブロック C とブロック B は上下にスクロールできますが、このときブロック A はスクロールされません。
- ブロック A とブロック B は左右にスクロールできますが、このときブロック 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>