7
I’m looking to split the screen of the phone in half.
I have two LinearLayout the same size, but it seems that the only way to do this, is to put the size on the property android:layout_height=<tamanho>?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout_id"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="87dp"
tools:context=".MyActivity">
  <LinearLayout
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
  </LinearLayout>
  <LinearLayout
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
  </LinearLayout>
</LinearLayout>
This is my layout.xml, I want to leave you both LinearLayout interns of the same height.
