1. 排列方式
- 纵向:
android:orientation="vertical"
- 横向:
android:orientation="horizontal"
系统默认采用横向布局
2. 对齐方式
两种设置边距的方式,分别是
-
android:paddingStart="150dp" //和左侧的边距
-
android:paddingTop="50dp" //和顶部的边距
3. 权重
线性布局中可以规定控件的权重,通过android:layout_weight=""
实现。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="3">
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"