要求:制作如图所示的冰墩墩宣传页面
导航栏
<LinearLayout
android:orientation="horizontal"
android:background="#ffa500"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ImageView
android:src="@drawable/a"
android:layout_width="90dp"
android:layout_height="90dp"></ImageView>
<TextView
android:layout_weight="1"
android:textSize="60sp"
android:text="首页"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
<ImageView
android:layout_gravity="center_vertical"
android:src="@drawable/b"
android:layout_width="90dp"
android:layout_height="90dp"></ImageView>
</LinearLayout>
第一大框
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<!-- 第一大框中左边框-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/g"></ImageView>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/g"></ImageView>
</LinearLayout>
<!-- 第一大框中右边框-->
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="422dp"
android:src="@drawable/h"></ImageView>
</LinearLayout>
</LinearLayout>
第二大框
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:src="@drawable/f"></ImageView>
<ImageView
android:layout_width="match_parent"
android:layout_height="238dp"
android:layout_weight="1"
android:src="@drawable/f"></ImageView>
</LinearLayout>