如何在android中拥有多种形式的应用程序?
我将开发一个包含多个级联表单的购物应用程序。 开发平台为android 3.1。我有两个问题。
- 拥有多种形式的好策略是什么?例如为每个级联表单启动新活动?
- 如果使用多个活动是一个很好的解决方案,那么如何在活动之间共享信息,例如购物车数据(DB,共享类,...)?
我刚刚从 C++ 跳到这里,我不是视觉环境应用程序开发方面的专家。
I'm going to develop a shopping application which include several cascading forms.
The development platform is android 3.1. I got two problems.
- what is a good strategy to have multiple forms? e.g. start new activity for each cascading form?
- if using multiple activities is a good solution, how can share information between activities like shopping cart data (DB,Shared Class,...)?
I just jumped from C++ over here and I'm not that expert in visual environment application development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会:
1)为每种表单使用不同的活动/布局(事情更容易、更有组织)。
2) 使用 Application 实例来存储全局信息。
I would:
1) Use a different activity/layout for each form (things are easier and more organised).
2) Use an Application instance to store the global information.