android:alpha setAlpha(float) 设置alpha属性 0-1 完全透明到不透明
android:backgroud 背景
android:clickable 是否回应点击事件
android:contentDescription setContentDescription(CharSequence) 定义文字,简要介绍该视图内容。
android:drawingCacheQuality setDrawingCacheQuality(int)
设置绘图时半透明质量。有以下值可设置:auto(默认,由框架决定)/high(高质量,使用较高的颜色深度,消耗更多的内存)/low(低质量,使用较低的颜色深度,但是用更少的内存)。
如果设置此属性,将直接从父容器中获取绘图状态(光标,按下等)。 见下面代码部分,注意根据目前测试情况仅仅是获取绘图状态,而没有获取事件,也就是你点一下LinearLayout时Button有被点击的效果,但是不执行点击事件。
android:fadeScrollbars setScrollbarFadingEnabled(boolean)
设置滚动条的自动隐藏,即不滚动的时候隐藏
android:fadingEdgeLength getVerticalFadingEdgeLength()
设置 边框渐变的长度。
android:filterTouchesWhenObscured setFilterTouchesWhenObscured(boolean)
view所在窗口被其它可见窗口遮住时,是否过滤触摸事件。
android:fitsSystemWindows setFitsSystemWindows(boolean)
设置布局调整时是否考虑系统窗口
android:focusable | setFocusable(boolean) |
android:focusableInTouchMode | setFocusableInTouchMode(boolean) |
android:hapticFeedbackEnabled | setHapticFeedbackEnabled(boolean) |
android:id | setId(int) |
android:importantForAccessibility | setImportantForAccessibility(int) |