私は水平方向と垂直方向の両方を作成しようとしていますScrollableLayout
。私は水平または垂直にスクロール可能なレイアウトにすることができましたが、私は両方の面でそれを作ることができませんでした。水平と垂直の両方向にスクロール可能なレイアウト
HorizontalScrollView
の中にScrollView
を入れ込もうとしましたが、それをすると横向きに収縮しました。私はJavaコードでScrollView
内の私の意見を追加してい
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ScrollView
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ScrollView>
</HorizontalScrollView>
:ここに私のコードです。
この[質問]をご覧ください(https://stackoverflow.com/questions/2044775/scrollview-vertical-and-horizontal-in-android) – FarshidABZ