如果我在Screen1中使用多个布局作为虚拟屏幕,如何从其他屏幕直接打开Screen1中的布局(虚拟屏幕)
答案 0 :(得分:0)
你的问题太广泛了,但你所说的要么是你想要的 包含xml中的标记,如:
<include
layout="your_layout.xml"
/>
或切换到活动
Intent intent = new Intent(this, theActivityYouWantToGoTo.class);
startActivity(intent);
你真的需要查看我建议的一些教程 newBoston在YouTube上的Android教程。