<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:context=".Activity05" tools:showIn="@layout/activity_05"> <LinearLayout android:layout_width="match_parent" android:layout_weight="1" android:orientation="horizontal" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:background="#ff0000" > <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:text="top left" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00" android:layout_weight="1"> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:text="top middle" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#0000ff" android:layout_weight="1"> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:text="top right" /> </LinearLayout> </LinearLayout> <LinearLayout android:layout_weight="1" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <LinearLayout android:layout_weight="1" android:background="#ff0000" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="low left" /> </LinearLayout> <LinearLayout android:layout_weight="1" android:background="#00ff00" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="low middle" /> </LinearLayout> <LinearLayout android:layout_weight="1" android:background="#0000ff" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="low right" /> </LinearLayout> </LinearLayout> </LinearLayout>
08-24