Android Studio布局

文章目录

  • LinearLayout线性布局
    • 排列方向
    • 排列位置
    • 行列权重

LinearLayout线性布局

从行开始,顶格

排列方向

android:orientation=“horizontal”

在这里插入图片描述

android:orientation=“vertical”

在这里插入图片描述

排列位置

注意layout_width和layout_height的值是match_parent还是wrap_content,因为是根据控件的边界,所以这会影响居中效果

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:gravity="center">

center水平垂直居中、center_vertical垂直居中、center_horizontal水平居中、right最右、left(top)最左、bottom最下
center_vertical垂直居中、center_horizontal水平居中、right最右、left最左、bottom最下

行列权重

控件在一行/列中所占的比例

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
            <TextView
                android:id="@+id/textView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="111"
                />
            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="222"
                />
        </LinearLayout>

在这里插入图片描述

// 换成垂直方向排列
android:orientation="horizontal"

在这里插入图片描述

上一篇:源码编译framework.jar 并成功导入android studio 开发


下一篇:JavaSE&字节缓冲流-☃️前言