美文网首页
绝对布局(AbsoluteLayout)

绝对布局(AbsoluteLayout)

作者: fastcv | 来源:发表于2019-07-03 22:48 被阅读0次

    前言

    绝对布局也叫坐标布局,指定控件的绝对位置,简单直接,直观性强,但是手机屏幕尺寸差别较大,适应性差,Android 1.5已弃用,可以用RelativeLayout替代。(结合大佬们的博客总结的,如有侵权,麻烦联系我删除此文章)

    属性

    常用属性

    属性 说明
    android:layout_x 设置组件在屏幕上的x坐标
    android:layout_y 设置组件在屏幕上的y坐标

    举例

    next.xml

    <?xml version="1.0" encoding="utf-8"?>
    <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent" android:layout_height="match_parent">
    
        <ImageView
            android:layout_width="100dip"
            android:layout_height="120dip"
            android:layout_x="150dip"
            android:layout_y="40dip"
            android:src="@drawable/ic_launcher_background"/>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_x="100dip"
            android:layout_y="150dip"
            android:text="上一张"/>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_x="200dip"
            android:layout_y="150dip"
            android:text="下一张"/>
    
    </AbsoluteLayout>
    

    示意图:


    absolute.PNG

    附加

    相关文章

      网友评论

          本文标题:绝对布局(AbsoluteLayout)

          本文链接:https://www.haomeiwen.com/subject/semhhctx.html