Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
12_组件-任意组件
Search
powerhope
August 11, 2016
1
360
12_组件-任意组件
App Inventor移动应用开发
powerhope
August 11, 2016
Tweet
Share
More Decks by powerhope
See All by powerhope
1_App Inventor初步
powerhope
0
240
2_1_HelloPurr
powerhope
0
140
2_2_8-Ball(魔术8球)
powerhope
2
140
3_App Inventor编程基础
powerhope
0
120
4_组件-用户界面
powerhope
0
170
5_组件-界面布局
powerhope
0
160
6_组件-多媒体
powerhope
0
110
7_组件-绘图动画
powerhope
0
130
8_组件-传感器
powerhope
0
140
Featured
See All Featured
How Software Deployment tools have changed in the past 20 years
geshan
0
33k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
870
The untapped power of vector embeddings
frankvandijk
2
1.6k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
249
1.3M
Game over? The fight for quality and originality in the time of robots
wayneb77
1
150
The Pragmatic Product Professional
lauravandoore
37
7.2k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
122
21k
Information Architects: The Missing Link in Design Systems
soysaucechin
0
850
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
9.9k
Bootstrapping a Software Product
garrettdimon
PRO
307
120k
HDC tutorial
michielstock
1
590
Building a Scalable Design System with Sketch
lauravandoore
463
34k
Transcript
College of Mathematics and Computer Science, Hunan Normal University 瞿绍军
湖南师范大学数学与计算机科学学院
College of Mathematics and Computer Science, Hunan Normal University
任意组件是用App Inventor进行高级编程的一项非 常重要的功能,可以实现对某个组件属性的动态修 改,或成批的修改多个组件的属性。在任意组件的 块中都增加了一个“组件”参数,用来指定需要修改 属性的组件对象或获取组件对象的对应属性值 任意组件
College of Mathematics and Computer Science, Hunan Normal University
在组件设计窗口的组件列表中是没有任意组件显示 的,因为任意组件不是一个真正的组件。当添加了 某个组件到组件设计视图中后,在逻辑设计的模块 下面的任意组件下才会出现该类组件的任意组件。 如下图是添加了按钮和标签后出现的任意按钮和任 意标签。 任意组件
College of Mathematics and Computer Science, Hunan Normal University 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University
这里的实现中是直接在逐项循环中创建的列表,然 后把四个标签组件对象放到列表中的。 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University
此外,也可以先创建一个全局变量,并初始化为空 列表,然后在某个事件(如屏幕初始化事件)中通 过设置全局变量的值处创建列表并添加对象。但是 不能直接定义全局变量后就创建列表,因为此时组 件对象都还没有加载,如下图是不允许的。 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University
正确的创建组件列表的方式 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University 成批修改标签文本颜色和大小
College of Mathematics and Computer Science, Hunan Normal University 成批修改标签文本颜色和大小