我必须像这样制作一个表格布局。我一直在尝试很多方面,但我不能这样做。
以下是我想要实现的截图。
谢谢。
答案 0 :(得分:0)
我相信RelativeLayout可以轻松实现这一目标。
答案 1 :(得分:0)
嗯,您可以按照您的要求进行一些修改,这样做。
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/background_light" >
<LinearLayout
android:id="@+id/first_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Nombre : "
android:textColor="@android:color/black" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Enter your field"
android:textColor="@android:color/black" />
</LinearLayout>
<LinearLayout
android:id="@+id/second_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/first_row"
android:orientation="horizontal"
android:weightSum="3" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Localizame" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Nombre : "
android:textColor="@android:color/black" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Enter your field"
android:textColor="@android:color/black" />
</LinearLayout>
<LinearLayout
android:layout_below="@id/second_row"
android:id="@+id/third_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Latitud : "
android:textColor="@android:color/black" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Enter your field"
android:textColor="@android:color/black" />
</LinearLayout>
<LinearLayout
android:id="@+id/fourth_row"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/third_row"
android:orientation="horizontal"
android:weightSum="2" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Anadir Amigo" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Enter your field"
android:textColor="@android:color/black" />
</LinearLayout>
</RelativeLayout>