1

请看下面的代码

<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,并具有适当的大小。但相反,它无处显示。我什至没有看到它!请帮忙!

4

1 回答 1

1

您正在使用wrap_content但没有默认文本。因此,如果 EditText 可见,它将非常小。您需要自己定义合适的尺寸。尝试match_parent用作宽度或添加属性,如minWidthor ems

于 2013-01-21T16:59:50.550 回答