Android Layout布局及属性



第一类:属性值 true或者 false

 android:layout_centerHrizontal 水平居中
 android:layout_centerVertical 垂直居中
 android:layout_centerInparent 相对于父元素完全居中
 android:layout_alignParentBottom 贴紧父元素的下边缘
 android:layout_alignParentLeft 贴紧父元素的左边缘
 android:layout_alignParentRight 贴紧父元素的右边缘
 android:layout_alignParentTop 贴紧父元素的上边缘
 android:layout_alignWithParentIfMissing 如果对应的兄弟元素找不到的话就以父元素做参照物


 android:layout_alignParentStart紧贴父元素结束位置开始

 android:layout_alignParentEnd紧贴父元素结束位置结束

 android:animateLayoutChanges布局改变时是否有动画效果

 android:clipChildren定义子布局是否一定要在限定的区域内

 android:clipToPadding定义布局间是否有间距

 android:animationCache定义子布局也有动画效果

 android:alwaysDrawnWithCache定义子布局是否应用绘图的高速缓存

 android:addStatesFromChildren定义布局是否应用子布局的背景

 android:splitMotionEvents定义布局是否传递touch事件到子布局

 android:focusableInTouchMode定义是否可以通过touch获取到焦点

 android:isScrollContainer定义布局是否作为一个滚动容器 可以调整整个窗体

 android:fadeScrollbars滚动条自动隐藏

 android:fitsSystemWindows设置布局调整时是否考虑系统窗口(如状态栏)

 android:visibility定义布局是否可见

 android:requiresFadingEdge定义滚动时边缘是否褪色

 android:clickable定义是否可点击

 android:longClickable定义是否可长点击

 android:saveEnabled设置是否在窗口冻结时(如旋转屏幕)保存View的数据

 android:filterTouchesWhenObscured所在窗口被其它可见窗口遮住时,是否过滤触摸事件

 android:keepScreenOn设置屏幕常亮

 android:duplicateParentState是否从父容器中获取绘图状态(光标,按下等)

 android:soundEffectsEnabled点击或触摸是否有声音效果

 android:hapticFeedbackEnabled设置触感反馈


第二类:属性值必须为id的引用名“@id/id-name

 android:layout_alignBaseline 本元素的文本与父元素文本对齐

 android:layout_below 在某元素的下方
 android:layout_above 在某元素的的上方
 android:layout_toLeftOf 在某元素的左边
 android:layout_toRightOf 在某元素的右边

 android:layout_toStartOf本元素从某个元素开始

 android:layout_toEndOf本元素在某个元素结束

 android:layout_alignTop 本元素的上边缘和某元素的的上边缘对齐
 android:layout_alignLeft 本元素的左边缘和某元素的的左边缘对齐
 android:layout_alignBottom 本元素的下边缘和某元素的的下边缘对齐
 android:layout_alignRight 本元素的右边缘和某元素的的右边缘对齐


 android:layout_alignStart本元素与开始的父元素对齐

 android:layout_alignEnd本元素与结束的父元素对齐

 android:ignoreGravity 指定元素不受重力的影响

 android:layoutAnimation定义布局显示时候的动画

 android:id 为布局添加ID方便查找

 android:tag为布局添加tag方便查找与类似

 android:scrollbarThumbHorizontal设置水平滚动条的drawable。

 android:scrollbarThumbVertical设置垂直滚动条的drawable

 android:scrollbarTrackHorizontal设置水平滚动条背景(轨迹)的色drawable

 android:scrollbarTrackVertical设置垂直滚动条背景(轨迹)的色drawable

 android:scrollbarAlwaysDrawHorizontalTrack 设置水平滚动条是否含有轨道

 android:scrollbarAlwaysDrawVerticalTrack 设置垂直滚动条是否含有轨道

 android:nextFocusLeft 设置左边指定视图获得下一个焦点

 android:nextFocusRight设置右边指定视图获得下一个焦点

 android:nextFocusUp设置上边指定视图获得下一个焦点

 android:nextFocusDown设置下边指定视图获得下一个焦点

 android:nextFocusForward设置指定视图获得下一个焦点

 android:contentDescription 说明

 android:OnClick 点击时从上下文中调用指定的方法


第三类:属性值为具体的像素值,如30dip,40px,50dp

 android:layout_width定义本元素的宽度

 android:layout_height定义本元素的高度

 android:layout_margin 本元素离上下左右间的距离

 android:layout_marginBottom 离某元素底边缘的距离
 android:layout_marginLeft 离某元素左边缘的距离
 android:layout_marginRight 离某元素右边缘的距离
 android:layout_marginTop 离某元素上边缘的距离

 android:layout_marginStart本元素里开始的位置的距离

 android:layout_marginEnd本元素里结束位置的距离

 android:scrollX水平初始滚动偏移

 android:scrollY垂直初始滚动偏移

 android:background本元素的背景

 android:padding指定布局与子布局的间距

 android:paddingLeft指定布局左边与子布局的间距

 android:paddingTop指定布局上边与子布局的间距

 android:paddingRight指定布局右边与子布局的间距

 android:paddingBottom指定布局下边与子布局的间距

 android:paddingStart指定布局左边与子布局的间距与android:paddingLeft相同

 android:paddingEnd指定布局右边与子布局的间距与android:paddingRight相同

 android:fadingEdgeLength 设置边框渐变的长度

 android:minHeight最小高度

 android:minWidth最小宽度

 android:translationX 水平方向的移动距离

 android:translationY垂直方向的移动距离

 android:transformPivotX相对于一点的水平方向偏转量

 android:transformPivotY相对于一点的垂直方向偏转量


第四类:属性值问Android内置值的

 android:gravity控件布局方式

 android:layout_gravity布局方式

 android:persistentDrawingCachehua定义绘图的高速缓存的持久性  

 android:descendantFocusability控制子布局焦点获取方式 常用于listView的item中包含多个控件 点击无效

 android:scrollbars设置滚动条的状态

 android:scrollbarStyle设置滚动条的样式

 android:fitsSystemWindows设置布局调整时是否考虑系统窗口(如状态栏)

 android:scrollbarFadeDuration设置滚动条淡入淡出时间

 android:scrollbarDefaultDelayBeforeFade设置滚动条N毫秒后开始淡化,以毫秒为单位。

 android:scrollbarSize设置滚动调大小

 android:fadingEdge 设置拉滚动条时 ,边框渐变的放向

 android:drawingCacheQuality设置绘图时半透明质量

 android:OverScrollMode滑动到边界时样式

 android:alpha设置透明度

 android:rotation旋转度数

 android:rotationX水平旋转度数

 android:rotationY垂直旋转度数

 android:scaleX设置X轴缩放

 android:scaleY设置Y轴缩放

 android:verticalScrollbarPosition摄者垂直滚动条的位置

 android:layerType设定支持

 android:layoutDirection定义布局图纸的方向

 android:textDirection定义文字方向

 android:textAlignment文字对齐方式

 android:importantForAccessibility设置可达性的重要行

 android:labelFor添加标签



Android RelativeLayout属性



// 相对于给定ID控件
android:layout_above 将该控件的底部置于给定ID的控件之上;
android:layout_below 将该控件的底部置于给定ID的控件之下;
android:layout_toLeftOf 将该控件的右边缘与给定ID的控件左边缘对齐;
android:layout_toRightOf 将该控件的左边缘与给定ID的控件右边缘对齐;

android:layout_alignBaseline 将该控件的baseline与给定ID的baseline对齐;
android:layout_alignTop 将该控件的顶部边缘与给定ID的顶部边缘对齐;
android:layout_alignBottom 将该控件的底部边缘与给定ID的底部边缘对齐;
android:layout_alignLeft 将该控件的左边缘与给定ID的左边缘对齐;
android:layout_alignRight 将该控件的右边缘与给定ID的右边缘对齐;
// 相对于父组件
android:layout_alignParentTop 如果为true,将该控件的顶部与其父控件的顶部对齐;
android:layout_alignParentBottom 如果为true,将该控件的底部与其父控件的底部对齐;
android:layout_alignParentLeft 如果为true,将该控件的左部与其父控件的左部对齐;
android:layout_alignParentRight 如果为true,将该控件的右部与其父控件的右部对齐;
// 居中
android:layout_centerHorizontal 如果为true,将该控件的置于水平居中;
android:layout_centerVertical 如果为true,将该控件的置于垂直居中;
android:layout_centerInParent 如果为true,将该控件的置于父控件的中央;
// 指定移动像素
android:layout_marginTop 上偏移的值;
android:layout_marginBottom 下偏移的值;
android:layout_marginLeft   左偏移的值;
android:layout_marginRight   右偏移的值;

example:
android:layout_below = "@id/***"
android:layout_alignBaseline = "@id/***"
android:layout_alignParentTop = true
android:layout_marginLeft = “10px”

[java] view plaincopy
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <TextView
 android:id="@+id/label"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:text="Type here:"/>
 <EditText
 android:id="@+id/entry"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:background="@android:drawable/editbox_background"
 android:layout_below="@id/label"/>
 <Button
 android:id="@+id/ok"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_below="@id/entry"
 android:layout_alignParentRight="true"
 android:layout_marginLeft="10dip"
 android:text="OK" />
 <Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_toLeftOf="@id/ok"
 android:layout_alignTop="@id/ok"
 android:text="Cancel" />
</RelativeLayout>

这是很常见的布局内容,讲解如下:
android:layout_below="@id/label"/>
将当前控件放置于id为label 的控件下方。
android:layout_alignParentRight="true"
使当前控件的右端和父控件的右端对齐。这里属性值只能为true或false,默认false。
android:layout_marginLeft="10dip"
使当前控件左边空出相应的空间。
android:layout_toLeftOf="@id/ok"
使当前控件置于id为ok的控件的左边。
android:layout_alignTop="@id/ok"
使当前控件与id控件的上端对齐。

至此,我们已经发现,其属性之繁多。下面简单归纳一下:
第一类:属性值为true或false
*android:layout_centerHrizontal
*android:layout_centerVertical
*android:layout_centerInparent
*android:layout_alignParentBottom
*android:layout_alignParentLeft
*android:layout_alignParentRight
*android:layout_alignParentTop
*android:layout_alignWithParentIfMissing
第二类:属性值必须为id的引用名“@id/id-name
*android:layout_below
*android:layout_above
*android:layout_toLeftOf
*android:layout_toRightOf
*android:layout_alignTop
第三类:属性值为具体的像素值,如30dip,40px
*android:layout_marginBottom
*android:layout_marginLeft
*android:layout_marginRight
*android:layout_marginTop

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值