1>AbsoluteLayout(绝对布局)
又可以叫做坐标布局,可以直接指定子元素的绝对位置(xy)

2>由于手机屏幕尺寸差别比较大
使用绝对定位的适应性会比较差,在屏幕的适配上有缺陷

3>AbsoluteLayout子类控件的属性
android:layout_x=”35dip” 控制当前子类控件的x位置
android:layout_y=”40dip” 控制当前子类控件的y位置

发中不推荐使用

<?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">    <Button        android:id="@+id/button"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_x="236dp"        android:layout_y="94dp"        android:text="Button" />    <Button        android:id="@+id/button2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_x="143dp"        android:layout_y="166dp"        android:text="Button" />    <Button        android:id="@+id/button3"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_x="33dp"        android:layout_y="263dp"        android:text="Button" />AbsoluteLayout>

更多相关文章

  1. 【Android】TextView倾斜文字
  2. Android(安卓)- fill_parent、wrap_content和match_parent的区别
  3. Android中常用的布局以及性能你了解多少?
  4. Android评分条控件RatingBar自定义背景颜色图片
  5. Android事件分发机制完全解析
  6. Android中ListView 控件与 Adapter 适配器如何使用?
  7. Robot Framework + Appium测试Android设备
  8. Android艺术开发探索第三章——View的事件体系(上)
  9. Android(安卓)入门第四讲04-小结-RecyclerView(回顾)+Context(介绍

随机推荐

  1. Android联网方式判断详解
  2. !!!!!!!!!!!
  3. android 基础学习(11)-----android调用 W
  4. Android关机流程
  5. Android去广告技术总结
  6. Android Studio 运行项目 报错误:You need
  7. Android中如何实现高亮显示即选中状态
  8. Android 3.1 r1 API中文文档(6)――ImageVi
  9. 笔试碎片
  10. Android 开发之日志打印封装log