0

我是 android 开发的新手,我想知道如何创建间隔文本字段并在每个文本字段的顶部添加一个名称。任何帮助,将不胜感激。

到目前为止我写的代码。

<LinearLayout 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"
    android:orientation="vertical"
    tools:context=".AddContact" >

    <EditText
        android:id="@+id/edit_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter name" >
    </EditText>

    <EditText
        android:id="@+id/edit_number"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter number" >
    </EditText>

</LinearLayout>
4

2 回答 2

1

希望以下代码对您有所帮助,您必须将 TextView 放在 EditText 之间以提供参考,

<LinearLayout 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"
    android:orientation="vertical"
    tools:context=".AddContact" >
    <TextView
        android:id="@+id/lbl_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="User Name"
    />
    <EditText
        android:id="@+id/edit_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter name" >
    </EditText>
    <TextView
        android:id="@+id/lbl_number"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="User Number"
    />
    <EditText
        android:id="@+id/edit_number"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="Enter number" >
    </EditText>

</LinearLayout>
于 2013-09-10T12:23:33.390 回答
1
<TextView
    android:id="@+id/lbl_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="User Name"
/>
<EditText
    android:id="@+id/edit_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="Enter name" >
</EditText>
<TextView
    android:id="@+id/lbl_number"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="User Number"
/>
<EditText
    android:id="@+id/edit_number"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="Enter number" >
</EditText

上面的代码会帮助你

于 2013-09-10T12:39:42.323 回答