【Android从零单排系列三十二】《Android布局介绍——AbsoluteLayout》

2023-07-17 20:31:30 浏览数 (1)

前言

小伙伴们,在上文中我们介绍了Android布局TableLayout,本文我们继续盘点介绍Android开发中另一个常见的布局,绝对布局AbsoluteLayout。

一 AbsoluteLayout基本介绍

AbsoluteLayout是Android中的布局容器之一。它允许您以绝对坐标的方式精确定位视图,即可以通过指定相对于父容器左上角的精确坐标来确定视图的位置。

在AbsoluteLayout中,每个子视图的位置和大小都是通过设置其android:layout_xandroid:layout_y属性来确定的。layout_x表示距离父容器左边缘的像素值,layout_y表示距离父容器顶部边缘的像素值。

使用AbsoluteLayout的优点是可以精确地控制视图的位置和布局,适用于一些特定场景,比如创建自定义的视图布局或实现某些特殊效果。然而,由于Android设备的多样性和不同屏幕尺寸的存在,使用绝对坐标来布局视图可能会导致在不同设备上显示效果的不一致,可能会出现重叠、截断或遮挡的情况。

注:已被弃用,且不建议使用

二 AbsoluteLayout使用方法

代码语言:javascript复制
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="账号: "
        android:textSize="30sp"
        android:layout_x="40dp"
        android:layout_y="350dp"
        />

    <EditText
        android:layout_width="250dp"
        android:layout_height="50dp"
        android:layout_x="110dp"
        android:layout_y="350dp"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="密码: "
        android:textSize="30sp"
        android:layout_x="40dp"
        android:layout_y="420dp"
        />

    <EditText
        android:layout_width="250dp"
        android:layout_height="50dp"
        android:layout_x="110dp"
        android:layout_y="420dp"
        />

    <Button
        android:layout_width="150dp"
        android:layout_height="50dp"
        android:layout_x="40dp"
        android:layout_y="500dp"
        android:text="登录"
        />

    <Button
        android:layout_width="150dp"
        android:layout_height="50dp"
        android:layout_x="210dp"
        android:layout_y="500dp"
        android:text="注册"
        />

</AbsoluteLayout>

三 AbsoluteLayout常见属性及方法

android:layout_x和android:layout_y:

这两个属性用于指定控件的左上角的x坐标和y坐标。例如,android:layout_x="100dp" android:layout_y="200dp"将会把控件的左上角放置在屏幕的(100dp,200dp)的位置。

android:layout_width和android:layout_height:

这两个属性用于指定控件的宽度和高度。可以使用具体的数值(如100dp)或者特定的值(如fill_parent或wrap_content)来指定宽度和高度。

android:layout_alignParentTop、android:layout_alignParentBottom、android:layout_alignParentLeft和android:layout_alignParentRight:

这些属性用于将控件相对于父布局的顶部、底部、左边和右边进行对齐。例如,android:layout_alignParentTop="true"将会将控件的顶部与父布局的顶部对齐。

android:layout_alignTop、android:layout_alignBottom、android:layout_alignLeft和android:layout_alignRight:

这些属性用于将控件相对于其他控件的顶部、底部、左边和右边进行对齐。例如,android:layout_alignTop="@ id/otherView"将会将控件的顶部与id为otherView的控件的顶部对齐。

android:layout_centerHorizontal和android:layout_centerVertical:

这两个属性用于将控件在水平和垂直方向上居中对齐。例如,android:layout_centerHorizontal="true"将会将件在水平方向上居中对齐。

android:layout_x和android:layout_y可以与上述的对齐属性一起使用,通过给它们指定正负数值来进行微调。例如,android:layout_x="-10dp"将会将控件的左上角向左移动10dp。

四 总结

AbsoluteLayout已被弃用,并不推荐在Android应用程序开发中使用。

0 人点赞