在Android studio建立新页面
Res->layout->右键new->Activity->Empty Activity
1.布局三个按钮
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="150dp"
android:layout_height="88dp"
android:text="按钮1"></Button>
<Button
android:layout_width="150dp"
android:layout_height="88dp"
android:text="按钮2"></Button>
<Button
android:layout_width="150dp"
android:layout_height="88dp"
android:text="按钮3"></Button>
</LinearLayout>
此时默认水平布局
2.改成垂直布局
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" //靠边垂直(之后第4步时选择了horizontal水平布局)
android:gravity="center" //页面正中
3.在Button里改成正中(仅作对比实验,完成后回到2)
<Button
android:layout_width="150dp"
android:layout_height="88dp"
android:text="按钮1"
android:layout_gravity="center"></Button>
4.在linearlayout里放两个linearlayout
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="#ff00">
<TextView
android:layout_width="wrap_content"