I have next code:
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView2"
android:layout_below="@+id/editText1"
android:layout_marginTop="30dp"
android:text="@string/cm_diameter"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView3"
android:layout_below="@+id/textView3"
android:layout_marginTop="28dp"
android:text="@string/from"
android:textAppearance="?android:attr/textAppearanceSmall" />
The parameters that I am using are connected to relative layout.
I want to wrap this text views (I have another views as well) using scroll view.
My image shows the scroll view (green view) and below the scroll view some another container (black view). How can I achieve this result?
I've tried to use liner layout in scroll view but it has different result that I expected.
