Android布局之AbsoluteLayout(坐标布局)
2010-06-17 03:21:00 来源:WEB开发网AbsoluteLayout也就是绝对布局,又称坐标布局,在布局上灵活性较大,也较复杂,另外由于各种手机屏幕尺寸的差异,给开发人员带来较多困难。
用坐标布局时,需要注意坐标原点为屏幕左上角,这和电脑屏幕的设置时一样一样的;添加视图时,要精确的计算每个视图的像素大小,最好先在纸上画草图,并所有元素的像素定位计算好。
这里我选取了320*480像素的标准屏幕,图片尺寸为275*95.代码如下:
< ?xml version="1.0" encoding="utf-8"? >
< AbsoluteLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
< ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/google"
android:layout_x="22px"
android:layout_y="60px"/ >
< TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="100px"
android:layout_y="175px"/ >
< TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I love Goolge"
android:layout_x="120px"
android:layout_y="195px"/ >
< TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I love the world"
android:layout_x="140px"
android:layout_y="215px"/ >
< /AbsoluteLayout >
布局讲解:
android:src="@drawable/google"
插入名为Google的图片,在drawable目录下。
android:layout_x="22px"
android:layout_y="60px"
视图左上角的初始位置,横向离屏幕左边缘22像素(layout_x);纵向离屏幕
Tags:Android 布局 AbsoluteLayout
编辑录入:coldstar [复制链接] [打 印]- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接