在 Android 中将 XML 解析为布局?
我正在开发 Android 中的一个应用程序,我需要动态设计应用程序的布局。我必须通过 XML 从数据库获取布局的详细信息,并根据要求在屏幕上显示解析结果。例如,XML 将包含 UI 中包含的 TextView 和 Button 的数量。
有人可以建议我在 Android SDK 中实现此功能的可能方法吗?
提前致谢, 阿格拉
I am working on an application in Android in which I need to design the layout of the application dynamically. I have to get the details of the layout from the database via XML and show the parse results on the screen as per the requirement. For example, XML will have the number of TextView and Buttons which will be included in the UI.
Can someone please suggest me the possible approach to implement this in Android SDK?
Thanks in Advance,
Aagrah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Android 中动态创建布局。创建一个 Linear/RelativeLayout,然后以编程方式将 TextView 和 Button 添加到其中。
有关如何以编程方式添加项目的信息,请参阅此答案。
You can create the layout on the fly in Android. Create a Linear/RelativeLayout, then add TextViews and Buttons programatically into it.
See this answer on how to add item programatically.