特定时间的任何动作(MIT App Inventor)

Any action at a specific time (MIT App Inventor)

我正在 MIT App Inventor 中制作应用程序,但我不知道如何做一件事。

例如:

If - time between (11:00AM-01:00PM) - set label.text to (it lunch time)

我不知道该怎么做,如果时间是从 - 到,请执行任何操作。

编写您自己的自定义过程:使用 Clock 组件以及 Clock.FormatDate 方法和模式 kkmm 以如下格式获取时间HHMM,看截图。

有关要使用的不同模式的列表,请参阅此处https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html

学习 App Inventor 的一个很好的方法是阅读 AI2 免费在线电子书中的免费 Inventor 手册 http://www.appinventor.org/book2 ...链接位于网页底部。这本书 'teaches' 用户如何使用 AI2 块进行编程。 这里有免费的编程课程http://www.appinventor.org/content/CourseInABox/Intro and the aia files for the projects in the book are here: http://www.appinventor.org/bookFiles
这里描述了如何使用 App Inventor 做很多基本的事情:http://www.appinventor.org/content/howDoYou/eventHandling .

同时学习教程 http://appinventor.mit.edu/explore/ai2/tutorials.html 以了解 App Inventor 的基础知识,然后尝试一些操作并按照 Top 5 Tips: How to learn App Inventor