absolutelayout 屏幕外 android,android基础之AbsoluteLayout布局

absolutelayout 屏幕外 android,android基础之AbsoluteLayout布局Absolute布局:组件的位置可以准确的指定在屏幕的x/y坐标位置虽然可以精确的去规定坐标,但是不建议使用。因为不同的设备不同的分辨率的手机移动设备上不能很好的显示应有的效果xmlns:tools=”http://schemas.android.com/tools”android:layout_width=”match_parent”android:layout_height=”match_…

Absolute布局:

组件的位置可以准确的指定在屏幕的x/y坐标位置

虽然可以精确的去规定坐标,但是不建议使用。因为不同的设备  不同的分辨率的手机移动设备上不能很好的显示应有的效果

xmlns:tools=”http://schemas.android.com/tools”

android:layout_width=”match_parent”

android:layout_height=”match_parent”

android:orientation=”vertical”

>

android:layout_width=”wrap_content”

android:layout_height=”fill_parent”

android:text=”Button1″

/>

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”button2″

/>

运行结果如下:

ee3d85e6ad256e8e9024fee0167ba315.png

layout_x和layout_y属性:可以设置具体的x/y坐标

代码如下:

xmlns:tools=”http://schemas.android.com/tools”

android:layout_width=”match_parent”

android:layout_height=”match_parent”

android:orientation=”vertical”

>

android:layout_width=”wrap_content”

android:layout_height=”fill_parent”

android:text=”Button1″

android:layout_x=”100dp”

/>

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”button2″

android:layout_y=”100dp”

/>

运行如下:

e9ea099f98433fcda3c17ee8b44bc0da.png

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/37748.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注