我想在运行时在 android 应用程序中创建 GUI。
例如,我有两个 xmls
1. layout1.xml 可在 url (http://localhost/layout1.xml)
2. layout2.xml 可在 url (http://localhost/layout2.xml)
启动 android 应用程序时,用户输入上述网址之一,然后说单击“确定”。
该应用程序将下载相应的 xml。(让我们跳过它是如何下载的,我有这个的代码),然后出现的下一个屏幕应该有从它下载的 xml 生成的 GUI。
如果我在开发 apk 期间创建了这些 xml 并将它们放在“res/layout”下,则 xml 符合相同的准则。
这有可能实现吗?