揭锅拿锅话说其实...吧 关注:33贴子:1,582
  • 1回复贴,共1

XML>XML布局文件

只看楼主收藏回复



IP属地:广东1楼2012-06-23 22:17回复

    在文件夹res/layout中存放着xml格式的布局文件
    布局方式主要是LinearLayout(线性布局) 、TableLayout(表格布局)、RelativeLayout(相对布局)
    当然还有AbsoluteLayout、(绝对布局)、FrameLayout(帧布局)等等
    他们之间也可以通过嵌套达到更好的界面效果
    我按照个人的理解将常用的属性整理了一下
    可能不科学 但我认为很实用。
    控件为整体:
    android:id 地址
    android:width 宽度
    android:height 高度
    android:layout_width 宽(fill_parent/wrap_content)
    android:layout_height 高(fill_parent/wrap_content)
    android:layout_margin(Left/Top/Right/Bottom) 外边距(*dip)
    android:layout_weight 比重
    控件内容:
    android:text 文本内容
    android:textSize 文本大小
    android:gravity 内容基本位置
    android:background 背景色(RBG)
    android:padding(Left/Top/Right/Bottom) 内边距(*dip)
    android:singleLine 内容同行显示(true/false)
    相对布局:
    android:layout_above 下边与谁的上边对齐(id)
    android:layout_below 上边与谁的下边对齐(id)
    android:layout_toLeftOf 右边与谁的左边对齐(id)
    android:layout_toRightOf 左边与谁的右边对齐(id)
    android:layout_alignTop 上边与谁的上边对齐(id)
    android:layout_alignBottom 下边与谁的下边对齐(id)
    android:layout_alignLeft 左边与谁的左边对齐(id)
    android:layout_alignRight 右边与谁的右边对齐(id)
    android:layout_alignParentTop 上边与父控件的上边对齐(true/false)
    android:layout_alignParentBottom 下边与父控件的下边对齐(true/false)
    android:layout_alignParentLeft 左边与父控件的左边对齐(true/false)
    android:layout_alignParentRight 右边与父控件的右边对齐(true/false)
    android:layout_centerInParent 相对父控件居中(true/false)
    android:layout_centerHorizontal 相对父控件水平方向居中(true/false)
    android:layout_centerVertical 相对父控件垂直方向居中(true/false)


    IP属地:广东2楼2012-06-23 22:17
    回复