使用VirtualScreens的AppInventor程序解决方案



如果我在屏幕1中使用了多个布局作为虚拟屏幕

,我如何直接从屏幕1中的布局(虚拟屏幕(打开一个布局(虚拟屏幕(

您的问题太宽了,但您在说什么在XML中包含标签,例如:

<include
 layout="your_layout.xml"
 />

或切换到活动

Intent intent = new Intent(this, theActivityYouWantToGoTo.class);
startActivity(intent);

您真的需要研究一些我建议的教程
Newboston在YouTube上的Android教程。

最新更新