请看下面的代码
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Form" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:id="@+id/heightLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/height"
/>
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/heightLabel"
android:layout_marginLeft="5dp"
android:hint=""
/>
</RelativeLayout>
</ScrollView>
我需要EditText
将其显示在 旁边TextView
,并具有适当的大小。但相反,它无处显示。我什至没有看到它!请帮忙!