如何使用每个文本字段顶部的文本字段描述创建间隔文本字段

时间:2013-09-10 12:06:42

标签: android android-layout

我是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>

2 个答案:

答案 0 :(得分:1)

希望以下代码能为您提供帮助, 您必须在EditText之间放置TextView以提供参考,

<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>

答案 1 :(得分: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
  

以上代码可以帮助您