如何在android中拥有多种形式的应用程序?

发布于 2024-12-22 12:48:35 字数 210 浏览 3 评论 0原文

我将开发一个包含多个级联表单的购物应用程序。 开发平台为android 3.1。我有两个问题。

  1. 拥有多种形式的好策略是什么?例如为每个级联表单启动新活动?
  2. 如果使用多个活动是一个很好的解决方案,那么如何在活动之间共享信息,例如购物车数据(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.

  1. what is a good strategy to have multiple forms? e.g. start new activity for each cascading form?
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春庭雪 2024-12-29 12:48:35

我会:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文