A question with the design of android, I want to put in a row 6 controls, 3 TextView and 3 EditText, and all right there, but below those controls let's say a "screed down" I want to put another 6 similar controls, but with those below, but when I try to put them, as they overlap the other 6 Some idea, or some documentation material to know how the layouts and other controls of android necessary for the design work, I'm just starting with Android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF">
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15px"
android:orientation="horizontal">
<TextView
android:id="@+id/lblEstilo"
android:textSize="20dp"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="Estilo"
android:layout_gravity="left"
android:textColor="#000000" />
<EditText
android:id="@+id/txtEstilo"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:theme="@drawable/EditTextColorBorder"
android:layout_gravity="left" />
<TextView
android:id="@+id/lblColor"
android:textSize="20dp"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="Color"
android:layout_gravity="right"
android:textColor="#000000" />
<EditText
android:id="@+id/txtColor"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:theme="@drawable/EditTextColorBorder"
android:layout_gravity="left" />
<TextView
android:id="@+id/lblAcabado"
android:textSize="20dp"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="Acabado"
android:layout_gravity="right"
android:textColor="#000000" />
<EditText
android:id="@+id/txtAcabado"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:theme="@drawable/EditTextColorBorder"
android:layout_gravity="left" />
</LinearLayout>
</LinearLayout>