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のような属性を追加してみてください。minWidthems

于 2013-01-21T16:59:50.550 に答える