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
350
12_组件-任意组件
App Inventor移动应用开发
powerhope
August 11, 2016
Tweet
Share
More Decks by powerhope
See All by powerhope
1_App Inventor初步
powerhope
0
220
2_1_HelloPurr
powerhope
0
140
2_2_8-Ball(魔术8球)
powerhope
2
140
3_App Inventor编程基础
powerhope
0
120
4_组件-用户界面
powerhope
0
160
5_组件-界面布局
powerhope
0
160
6_组件-多媒体
powerhope
0
100
7_组件-绘图动画
powerhope
0
130
8_组件-传感器
powerhope
0
130
Featured
See All Featured
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
127
53k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.9k
GraphQLとの向き合い方2022年版
quramy
49
14k
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
How STYLIGHT went responsive
nonsquared
100
5.8k
Facilitating Awesome Meetings
lara
56
6.6k
Code Reviewing Like a Champion
maltzj
526
40k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
1.6k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
A Tale of Four Properties
chriscoyier
161
23k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
114
20k
Building an army of robots
kneath
306
46k
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 成批修改标签文本颜色和大小