关于 android:layout_x="0px" 是指当前View在整个布局管理器中相对于左上角即(0,0)点坐标所占的位置,而 android:layout_height="wrap_content" 是指当前View在布局管理器中

的大小。

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_x="0px"

android:layout_y="69px"

android:autoLink="all"

android:text="欢迎来到android世界。。。 http://www.baidu.com"

/>

</AbsoluteLayout>

更多相关文章

  1. Android五个布局
  2. android开发中常用的五大布局
  3. android的布局文件简介
  4. Android中的布局
  5. Android 布局 LinearLayout与RelativeLayout的布局属性
  6. android 相对定位布局方向
  7. android studio开发 控件布局
  8. android 布局属性
  9. AndroidStudio 基础控件与布局

随机推荐

  1. 关于android双屏异显的一些总结和卡死的
  2. Preference 使用详解
  3. 调用startactivityforresult后,onactivit
  4. Android以太网卡配置启动流程和双网卡同
  5. (一)、Android底层开发实战之基础知识
  6. IPC 机制(上)
  7. web app 第三方登录-微博登录(二)
  8. Ionic Cordova实现软键盘的监听 以及操作
  9. 浅析Android下的Android.mk文件(三)
  10. Android(安卓)CheckBox使用所遇到的坑