关于线性布局注意内容:
布局中一般RelativeLayout都是在LinearLayout里面,
关于权重weight的加深理解是,weight只有在LinerLayout才能被使用,这是很重要的一点,
RelativeLayout中使用权重weight必须满足条件有:
1.RelativeLayout是在LinearLayout下面进行布局设计
2.LinearLayout必须指定布局方向也就是:android:orientation="vertical"
如果没有指定布局方向的话RelativeLayout使用weight权重也是会出现错误
接下来就是进行设计范围,和基础篇2相同,设计的是图书显示页面:
代码实现如下:
```csharp
"1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="#8492a6">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#f4f4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:background="#7ba8b0">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="此处为图书封面"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="#bfd9d4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="书名"
android:textSize="18sp"/>
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#7489ab">
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:background="#bfd9d4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="概述"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#2e4d5c">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="作者"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#2e4d5c">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="日期"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="#8492a6">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#f4f4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:background="#7ba8b0">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="此处为图书封面"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="#bfd9d4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="书名"
android:textSize="18sp"/>
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#7489ab">
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:background="#bfd9d4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="概述"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#2e4d5c">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="作者"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#2e4d5c">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="日期"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="#8492a6">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#f4f4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:background="#7ba8b0">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="此处为图书封面"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="#bfd9d4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="书名"
android:textSize="18sp"/>
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#7489ab">
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:background="#bfd9d4">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="概述"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#2e4d5c">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="作者"
android:textSize="18sp" />
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="#2e4d5c">
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#bfd9d4">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="日期"
android:textSize="18sp" />