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