我有一个需要在多个活动中使用某些线性布局的 Android 应用程序。出于这个原因,我已将所需的线性布局提取到单独的 xml 文件中,但现在我不知道如何将该布局添加到其他布局中。简单地说,我的想法是这样的:
<xml layout id: "SomeSharedControls" />
<xml layout id:"mainWindow">
add @id SomeSharedControls
...
other xml controls in current window
...
</xml>
<xml layout id: "anotherWindow">
add @id SomeSharedControls
...
other xml controls in current window
...
</xml>
如何做到这一点?