Попробуйте этот макет,
Вы должны всегда использовать TableLayout для такого типа дизайна, чем RelativeLayout, чтобы можно было легко и динамически добавлять любое количество строк.
<TableLayout
android:id="@+id/mainTable"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:paddingLeft="3dip"
android:paddingRight="3dip"
android:shrinkColumns="1"
android:stretchColumns="*"
android:visibility="gone" >
<TableRow>
<TextView
style="@style/ds_20_b_darkgray"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Label1: " >
</TextView>
<EditText
android:id="@+id/editT1"
style="@style/ds_20_b_black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right" >
</EditText>
</TableRow>
<TableRow>
<TextView
style="@style/ds_20_b_darkgray"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Label2: " >
</TextView>
<EditText
android:id="@+id/editT2"
style="@style/ds_20_b_black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right" >
</EditText>
</TableRow>
</TableLayout>
Возможно, вам потребуется поместить всю компоновку таблицы в линейную или в RelativeLayout, расположить макет таблицы в центре и настроить поле, если вы хотите.
Я могу изменить его, если это не удовлетворяет вашим требованиям.