安卓入门2布局

1:LinearLayout 线性布局:
一行一行的呈现。

2:TableLayout表格布局:
关键字:TableRow:用于表明表格里面的一行。
深入入看 这里:
简单示范:

    <!-- 定义第一个表格布局,指定第2列允许收缩,第3列允许拉伸 -->
    <TableLayout android:id="@+id/TableLayout01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:shrinkColumns="1"
        android:stretchColumns="2">
        <!-- 直接添加按钮,它自己会占一行
        columns:列。 shrink:收缩。 stretch:伸展。
        -->
        <Button android:id="@+id/ok1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="独自一行的按钮"/>
        <!-- 添加一个表格行 -->
        <TableRow>
            <!-- 为该表格行添加三个按钮 -->
            <Button android:id="@+id/ok2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="普通的一个按钮"/>
            <Button android:id="@+id/ok3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="收缩按钮"/>
            <Button android:id="@+id/ok4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="拉伸按钮"/>
        </TableRow>
    </TableLayout>

截图:
在这里插入图片描述
3:相对布局Relative Layout:

关键理解layout:
layout_centerInParent="true":容器中心。
 android:layout_above="@id/bt31":在bt31上面。
 android:layout_alignLeft="@id/bt31":以bt31右边为边界。
 layout_toLeftOf="@id/bt31":靠近bt31的左边

参考代码:

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="3相对布局Relative Layout"/>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:id="@+id/bt31"
            android:text="bt31" />
<!--layout_centerInParent:位于中心。
相对bt31上下左右-->
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bt32"
            android:text="bt32上"
            android:layout_above="@id/bt31"
            android:layout_alignLeft="@id/bt31"/>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bt33"
            android:text="bt33下"
            android:layout_alignRight="@id/bt31"
            android:layout_below="@id/bt31"/>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bt34"
            android:text="bt34左"
            android:layout_alignTop="@id/bt31"
            android:layout_toLeftOf="@id/bt31"/>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/bt35"
            android:text="bt35右"
            android:layout_alignTop="@id/bt31"
            android:layout_toRightOf="@id/bt31"/>

    </RelativeLayout>

截图:
在这里插入图片描述

4:帧布局 Frame Layout:
简单速记:多个组件层叠排序,后面的组件覆盖前面的组件。
建议看这里。

5:网格布局 Grid Layout
里:
速记:row行,column列。

6:绝对布局 Absolute Layout
不推荐使用。看里。

7:约束布局ConstraintLayout
推荐使用。看里。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值