android之View组件的XML属性集合

时间:2021-03-02 17:22:15
XML属性 相关方法 说明
android:alpha setAlpha(float) 设置该组件的透明度
android:background setBackgroundResource(int) 设置该组件的背景颜色
android:clickable setClickable(boolean) 设置该组件是否可以激发单击事件
android:contentDescription setContentDescription(CharSequence) 设置该组件的主要描述信息
android:drawingCacheQuality setDrawingCacheQuality(int) 设置该组件所使用的绘制缓存的质量
android:fadeScrollbars setScrollbarFadingEnabled(boolean) 当不使用该组件的滚动条时,是否淡出显示滚动条
android:fadingEdge setVerticalFadingEdgeEnabled(boolean) 设置滚动该组件时组件边界是否使用淡出效果
android:fadingEdgeLength getVerticalFadingEdgeLength() 设置淡出边界的长度
android:focusable setFocusable(boolean) 设置该组件是否可以得到焦点
android:focusableInTouchMode setFocusableInTouchMode(boolean) 设置该组件在触摸模式下是否可以得到焦点
android:id setId(int) 设置该组件的唯一标识。Java代码中可通过findViewById来获取它
android:isScrollContainer setScrollContainer(boolean) 设置该组件是否是作为可滚动容器使用
android:keepScreenOn setKeepScreenOn(boolean) 设置该组件是否会强制手机屏幕一直打开
android:longCLickable setLongClickable(boolean) 设置该组件是否可以响应长单击事件
android:minHeight setMinimumHeight(int) 设置该组件的最小高度
android:minWidth setMinimumWidth(int) 设置该组件的最小宽度
android:nextFocusDown setNextFocusDownId(int) 设置焦点在该组件上,且按向下键时获得焦点的组件ID
android:nextFocusLeft setNextFocusLeftId(int) 设置焦点在该组件上,且按向左键时获得焦点的组件ID
android:nextFocusRight setNextFocusRightId(int) 设置焦点在该组件上,且按向右键时获得焦点的组件ID
android:nextFocusUp setNextFocusUpId(int) 设置焦点在该组件上,且按向上键时获得焦点的组件ID
android:onClick   为该组件的单击事件绑定监听器
android:padding setPadding(int,int,int,int) 在该组件的四边设置填充区域
android:paddingBottom setPadding(int,int,int,int) 在该组件的下边设置填充区域
android:paddingLeft setPadding(int,int,int,int) 在该组件的左边设置填充区域
android:paddingRight setPadding(int,int,int,int) 在该组件的右边设置填充区域
android:paddingTop setPadding(int,int,int,int) 在该组件的上边设置填充区域
android:rotation setRotation(float) 设置该组件旋转的角度
android:rotationX setRotationX(float) 设置该组件绕X轴旋转的角度
android:rotationY setRotationY(float) 设置该组件绕Y轴旋转的角度
android:saveEnabled setSaveEnabled(boolean) 如果设置为false,那当该组件被冻结时不会保存它的状态
android:scaleX setScaleX(float) 设置该组件在水平方向的缩放比
android:scaleY setScaleY(float) 设置该组件在垂直方向的缩放比
android:scrollX   该组件初始化后的水平滚动偏移
android:scrollY   该组件初始化后的垂直滚动偏移
android:scrollbarAlwaytsDrawHorizontalTrack   设置该组件是否总是显示水平滚动条的轨道
android:scrollbarAlwaytsDrawVerticalTrack   设置该组件是否总是显示垂直滚动条的轨道
android:scrollDefaultDelayBeforFade setScrollbarDefaultBeforeFade(int) 设置滚动条在淡出隐藏之前延迟多少毫秒
android:scrollbarFadeDuration setScrollBarFadeDuration(int) 设置滚动条淡出隐藏过程需要多少秒
android:scrollbarSize setScrollBarSize(int) 设置垂直滚动条的宽度和水平滚动条的高度
android:scrollbarStyle setScrollBarStyle(int) 设置滚动条的风格和位置。该属性支持如下属性值:insideOverlay,insideInset,outsideOverlay,outsideInset
android:scrollbarThumbHorizontal   设置该组件的水平滚动条的滑动对应的Drawable对象
android:scrollbarThumbVertical   设置该组件的垂直滚动条的滑动对应的Drawable对象
android:scrollbarTrackHorizontal   设置该组件的水平滚动条的轨道对应的Drawable对象
android:scrollbarTrackVertical   设置该组件的垂直滚动条的轨道对应的Drawable对象
android:scrollbars   定义该组件滚动时显示几个滚动。该属性支持如下属性值:none(不显示滚动条),horizontal(显示水平滚动条),vertical(显示垂直滚动条)
android:soundEffecctsEnabled setSoundEffectsEnabled(boolean) 设置组件被单击时是否使用音效
android:tag   为该组件设置一个字符串类型的tag值,接下来可通过view的getTag()获取该字符串,或通过findViewWithTag()查找该组件
android:transformPivotX setPivotX(float) 设置该组件旋转时旋转中心的X坐标
android:transformPivotY setPivotY(float) 设置该组件旋转时旋转中心的Y坐标
android:translationX setTranslationX(float) 设置该组件在X方向上的位移
android:translationY setTranslationY(float) 设置该组件在Y方向上的位移
android:visibility seVisibility(int) 设置该组件是否可见