我是靠谱客的博主 自然口红,最近开发中收集的这篇文章主要介绍Android-06-布局管理器-绝对布局绝对布局AbsoluteLayout,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

绝对布局AbsoluteLayout

AbsoluteLayout基本上都是不会使用,因为我们开发的应用需要在很多的机型上面进行适配,如果使用了这个绝对布局,可能你在4寸的手机上是显示正常的,而换成5寸的手机,就可能出现偏移和变形,所以这个布局不建议使用。AbsoluteLayout是直接通过X,Y坐标来控制组件在Activity中的位置的,Android中把屏幕的左上角坐标设定为(0,0),水平向左为宽度,垂直向下为高度。

1.基本语法格式

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android" 
属性列表
>
</AbsoluteLayout >

2.实例

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"

    android:layout_height="match_parent" >    

    <Button

        android:id="@+id/button1"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_x="32dp"

        android:layout_y="53dp"

        android:text="Button1" />

    <Button

        android:id="@+id/button2"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_x="146dp"

        android:layout_y="53dp"

        android:text="Button2" />

    <Button

        android:id="@+id/button3"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_x="85dp"

        android:layout_y="135dp"

        android:text="Button3" />

</AbsoluteLayout>

效果:::
在这里插入图片描述

最后

以上就是自然口红为你收集整理的Android-06-布局管理器-绝对布局绝对布局AbsoluteLayout的全部内容,希望文章能够帮你解决Android-06-布局管理器-绝对布局绝对布局AbsoluteLayout所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部