使用 App Inventor 在后台打开网站而不显示
Open website in background without displaying with App Inventor
我要编写我的第一个 Android 应用程序。为此,我想使用 App Inventor,因为它似乎是最简单的入门方法。
在这个应用程序中,我有几个按钮,每个按钮都应该在后台打开一个特定的预定义 HTTP 地址,没有别的。
例如:
Button pressed → open http://bla.com/myinput in background → exit
这可能吗?
使用 webviewer
组件并将其可见性设置为 false
。然后与Webviewer.GoToUrl
块一起在后台打开网页。稍后如果您想显示其中一个网页,只需将 webviewer 的可见性设置为 true
。
顺便说一句。它有助于 do the tutorials to learn the basics of App Inventor, see also the Top 5 Tips: How to learn App Inventor.
我要编写我的第一个 Android 应用程序。为此,我想使用 App Inventor,因为它似乎是最简单的入门方法。
在这个应用程序中,我有几个按钮,每个按钮都应该在后台打开一个特定的预定义 HTTP 地址,没有别的。
例如:
Button pressed → open http://bla.com/myinput in background → exit
这可能吗?
使用 webviewer
组件并将其可见性设置为 false
。然后与Webviewer.GoToUrl
块一起在后台打开网页。稍后如果您想显示其中一个网页,只需将 webviewer 的可见性设置为 true
。
顺便说一句。它有助于 do the tutorials to learn the basics of App Inventor, see also the Top 5 Tips: How to learn App Inventor.