I am trying to make both horizantally and vertically ScrollableLayout
. I managed to make horizantally or vertically scrollable layout but I couldn't make it for both side.
I tried to put ScrollView
inside HorizontalScrollView
but when I do that it shrinked horizontal side. Here is my code:
<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>
I am adding my views inside ScrollView
with java code.