网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

android基础之AbsoluteLayout布局

Absolute布局:

我们拥有10余年网页设计和网站建设经验,从网站策划到网站制作,我们的网页设计师为您提供的解决方案。为企业提供成都网站建设、成都做网站、微信开发、微信小程序开发、手机网站制作设计H5网站设计、等业务。无论您有什么样的网站设计或者设计方案要求,我们都将富于创造性的提供专业设计服务并满足您的需求。

组件的位置可以准确的指定在屏幕的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"

    />

运行结果如下:

android基础之AbsoluteLayout布局

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"

    />

运行如下:

android基础之AbsoluteLayout布局


新闻名称:android基础之AbsoluteLayout布局
浏览地址:http://bjjierui.cn/article/pesihh.html

其他资讯