EasyClik安卓原生UI免费版教程
免费教程说明
UI入门
EasyClick 官方支持的安卓组件
排版绘制
↗
布局
↗
LinearLayout 线性布局
RadioGroup 单选布局
ScrollView 垂直滚动框布局
FrameLayout 帧布局
HorizontalScrollView 横向滚动框
CardView卡片布局
include 引用布局
控件
↗
TextView 控件
View 视图
EditText 输入框控件
Button 按钮控件
CheckBox 复选框
RadioButton 单选按钮
Spinner 下拉选择框
Swtich 开关按钮
ImageView 图像
WebView 内嵌浏览器
公有属性表
人机交互
↗
按钮点击操作
单选按钮,复选框,开关选中操作
下拉框选中操作
修改文本内容
保存UI参数脚本读取值
UI中启动脚本
UI中启动EC设置
清空UI参数
对话框
悬浮窗
脚本与 UI 交互
UI与网络交互
原生UI 学习思路
本站点使用 MrDoc 构建
-
+
公有属性表
# 公有属性表 >s 说明:本章内容为公有属性说明。控件、布局中的公有属性解释。 | 属性名 | 说明 | 可选值 | |:--- |:--- |:--- | | layout_width | 宽度 | wrap_content: 和自身内容一样的长度 <br> match_parent:和父组件一样的长度 <br> 具体数字+dp | | layout_height | 高度 | wrap_content: 和自身内容一样的长度 <br> match_parent:和父组件一样的长度 <br> 具体数字+dp | | background | 背景色、背景图 | 16进制的颜色值,例如#FFFFFF或者带透明度的#33FFFFFF<br>背景图例子@drawable/bg bg是res目录下的图片资源 | | tag | 标签 | 中英文都可,在代码中可以通过tag获取对应的值 | | visibility | 是否可展示 | gone:不展示 <br> visible:展示 <br> invisible:不展示但是占用空间 | | clickable | 是否可点击 | true: 可点击 <br> false: 不可点击 | | enable | 是否启用 | true: 启用 <br> false: 禁用 | | minHeight | 最小高度 | 具体数字+dp | | minWidth | 最小宽度 | 具体数字+dp | | paddingLeft | 左内边距 | 具体数字+dp | | paddingTop | 上内边距 | 具体数字+dp | | paddingRight | 右内边距 | 具体数字+dp | | paddingBottom | 下内边距 | 具体数字+dp | | padding | 上下左右内边距 | 具体数字+dp | | layout_gravity | 自身相对于父容器的对齐方式 | top(顶部对齐)<br> bottom(底部对齐) <br> left(靠左对齐) <br> right(靠右对齐) <br> center_vertical(垂直居中) <br> fill_vertical(垂直充满) <br> center_horizontal(水平居中) <br> fill_horizontal(水平充满) <br> center(四个方向居中) <br> fill(充满)<br> clip_vertical<br> clip_horizontal | | layout_margin | 上下左右外边距 | 具体数字+dp | | layout_marginLeft | 左外边距 | 具体数字+dp | | layout_marginRight | 右外边距 | 具体数字+dp | | layout_marginTop | 上外边距 | 具体数字+dp | | layout_marginBottom | 下外边距 | 具体数字+dp | | cornerRadius | 视图的圆角度数 | 具体数字+dp | ## 公有属性补充 ### 取消 所有的组件自带内边距 `padding` 属性 设置为`0dp`即可 ### 属性解释 | Value | Description | |:-------------------:|-------------------- | | top | Put the object at the top of its container, not changing its size. 将对象放在其容器的顶部,不改变其大小. | Put the object at the bottom of its container, not changing its size. 将对象放在其容器的底部,不改变其大小. | | left | Put the object at the left edge of its container, not changing its size. 将对象放在其容器的左侧,不改变其大小. | | right | Put the object at the right edge of its container, not changing its size. 将对象放在其容器的右侧,不改变其大小. | | center_vertical | Place object in the vertical center of its container, not changing its size. 将对象纵向居中,不改变其大小. 垂直对齐方式:垂直方向上居中对齐。 | | fill_vertical | Grow the vertical size of the object if needed so it completely fills its container. 必要的时候增加对象的纵向大小,以完全充满其容器. 垂直方向填充 | | center_horizontal | Place object in the horizontal center of its container, not changing its size. 将对象横向居中,不改变其大小. 水平对齐方式:水平方向上居中对齐 | | fill_horizontal | Grow the horizontal size of the object if needed so it completely fills its container. 必要的时候增加对象的横向大小,以完全充满其容器. 水平方向填充 | | center | Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. 将对象横纵居中,不改变其大小. | | fill | Grow the horizontal and vertical size of the object if needed so it completely fills its container. This is the default. 必要的时候增加对象的横纵向大小,以完全充满其容器. | | clip_vertical | Additional option that can be set to have the top and/or bottom edges of the child clipped to its container’s bounds. The clip is based on the vertical gravity: a top gravity clips the bottom edge, a bottom gravity clips the top edge, and neither clips both edges. 附加选项,用于按照容器的边来剪切对象的顶部和/或底部的内容. 剪切基于其纵向对齐设置:顶部对齐时,剪切底部;底部对齐时剪切顶部;除此之外剪切顶部和底部. 垂直方向裁剪 | | clip_horizontal | Additional option that can be set to have the left and/or right edges of the child clipped to its container’s bounds. The clip is based on the horizontal gravity: a left gravity clips the right edge, a right gravity clips the left edge, and neither clips both edges. 附加选项,用于按照容器的边来剪切对象的左侧和/或右侧的内容. 剪切基于其横向对齐设置:左侧对齐时,剪切右侧;右侧对齐时剪切左侧;除此之外剪切左侧和右侧. 水平方向裁剪 | # XML 特殊符号转义 >d 用于网址链接里的特殊符号转义,如下表的特殊符号在xml文件里必须转义否则会报错无法编译通过 | 实体引用 | 目标符号 | |--------|---| | \< | < | | \> | > | | \& | & | | \' | ' | | \" | " | ---- 我是Mr-老鬼、QQ1156346325 **--------------------版权声明---------------------** 版权所有~Mr-老鬼 ~转载请注明原文地址。 免责声明:本文所有的教程仅限交流学习使用不得用于违法用途,造成的法律后果本人不承担责任。
Mr、老鬼
2024年1月24日 00:56
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
Markdown文件
PDF文档(打印)
分享
链接
类型
密码
更新密码