tools命名空间是用于在开发阶段,在IDE中预览xml界面用的,真实运行的时候,不会展示tools中设置的属性,在布局资源加载到内存时,不会被解析处理,节约资源,便于开发。
常用的属性均可使用tools命名空间。
常用布局属性
//列表预览item布局 tools:listitem="@layout/adapter_folder_list_item" //列表预览item数量 tools:itemcount="3" //预览文本内容 tools:text="xxx" //预览时可见 tools:visibility="visible" //预览时图片资源 tools:src="@drawable/xxx" tools:srcCompat="@tools:sample/backgrounds/scenic" tools:drawableTop="@mipmap/xxx" //预览时前景 tools:foreground="@color/colorAccent" //预览时背景 tools:background="#ff0000" //预览时显示在某个布局中 tools:showIn="@layout/activity_main" //预览时的上下文 tools:context=".MainActivity" //预览时的文字大小 tools:textSize="12sp" //预览时的视图宽度 tools:layout_width="60dp"