Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个扩展列表视图的活动,我想创建另一个有 2 个编辑文本字段的活动。单击菜单项时会打开第二个活动...我已经这样做了,但我不知道如何在第二个活动中创建 2 个文本字段。我想知道第二个活动是否有一个 xml 文件?以及它在哪里或如何更改该活动的布局。非常感谢!
只需在布局 forlder 下创建另一个 xml 文件。例如将其称为 secondView.xml,然后在 seconf Activity 类中更改此行:
setContentView(R.layout.main);
至
setContentView(R.layout.secondView);