<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=".MainActivity"> <LinearLayout android:id="@+id/up" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="horizontal" > <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:background="#65ff03"> </TextView> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:background="#ff0600"> </TextView> <TextView android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:background="#0e3bff"> </TextView> </LinearLayout> <TextView android:id="@+id/middle" android:layout_width="match_parent" android:layout_height="5dp" android:background="#FFFFFF"> </TextView> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:background="#65ff03"> </TextView> <TextView android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:background="#ff0600"> </TextView> <TextView android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:background="#0e3bff"> </TextView> </LinearLayout> </LinearLayout>