Android:将表格布局从一个 Activity 复制到另一个 Activity
我在活动 1 中有一个表格布局,例如 TL1,在活动 2 中有一个表格布局,例如 TL2。 我更改了 TL1 中的一些属性,并希望在打开活动 2 时将完整的 TL1 复制到 TL2 中。
I have a table layout say TL1 in Activity 1 and table layout say TL2 in Activity 2.
I change some properties in TL1 and want to copy complete TL1 into TL2 when i open Activity 2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于表 TL1 可能是在活动 1 中基于某些支持数据生成的,您是否不能对该支持数据进行更改,然后在活动 2 中再次生成表 TL2,这将反映对支持数据的更改?如果您的实际问题是如何保存数据以便可以跨应用程序中的活动访问数据,则可以将其保存到 SQLite DB 或使用单例或扩展 Application 类。
你的问题太模糊了。您没有说出“更改某些属性”的确切含义。
Given that table TL1 is presumably generated in Activity 1 based upon some backing data, can't you make changes to that backing data and then generate the table TL2 again in Activity 2, which will reflect the changes to the backing data? If your actual problem is how to persist the data so that it's accessible across Activities in your application, you could persist it to a SQLite DB or use a singleton or extend the Application class.
Your question is far too vague. You've not telling is what you mean exactly by 'change some properties'.