我是麻省理工学院应用程序发明工具的初学者.我坚持在屏幕之间传递数据.我在互联网上搜索了很多时间.我使用有意图的活动启动器获得了很多结果,但是在麻省理工学院的应用程序发明者中它是如何实现的?
如果在android中我们可以传递这样的数据
Intent i = new Intent(this, ActivityTwo.class);
i.putExtra("Value1", "This value one for ActivityTwo ");
i.putExtra("Value2", "This value two ActivityTwo");
startActivity(i);
Run Code Online (Sandbox Code Playgroud)
通过使用bundle我们得到了这些数据,但在麻省理工学院的应用程序发明者中它是如何实现的?
app-inventor ×1