如何在App Inventor中打开网页

时间:2015-03-05 04:21:38

标签: android mobile-application app-inventor

我有一个webviewer,它是主要的应用程序,而webviewer是一个按钮。我想在用户点击按钮时在用户的网络浏览器中打开一个网页。如何在App Inventor中执行此操作?

Action: android.intent.action.VIEW 
DataUri: http://example.com 

以上文档中的说明不起作用。

2 个答案:

答案 0 :(得分:5)

将ActivityStarter添加到屏幕并配置其属性:

ActivityStarter1
Action:android.intent.action.VIEW
DataUri:http://example.com 

将其他属性留空。

enter image description here

在同一屏幕上,配置按钮的事件处理程序以调用activityStarter1.StartActivity:

enter image description here

按下按钮,将打开带有页面http://example.com

的Web浏览器

enter image description here

答案 1 :(得分:-1)

将活动启动器与动作android.intent.action.VIEW

一起使用

data URI是您要打开的网站。

然后使用:

call ActivityStarter1.StartActivity