我有下一个代码:
<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" />
我使用的参数连接到相对布局。
我想使用滚动视图来包装这个文本视图(我也有另一个视图)。
我的图像显示了滚动视图(绿色视图)和滚动视图下方的另一个容器(黑色视图)。我怎样才能达到这个结果?
我尝试在滚动视图中使用线性布局,但结果与我预期的不同。