English 中文(简体)
MVC in Anders/No? 如何组织与网络服务机构交流的传信
原标题:MVC in Android Yes/No? What is the best way to organize an app which communicates with a webservices
  • 时间:2011-06-23 18:33:01
  •  标签:
  • android

I m starting to learn Android and i would like know the best practice to organize my app. I m used to decompose my project in 3parts; Models, Views and Controllers... so in a first case I want to create my package sources like this:

- project.models.* // My all models
- project.ui.*     // My all activities

我需要与网络服务机构沟通,以便:

- project.models.* // My all models
- project.ui.*     // My all activities extends ListActivity etc...
- project.io.*     // Interfaces between models and webservices.

但我已经阅读了许多例子,看来不是正确的方法。 我不知道,试图用安文建立一个MVC是否是一个好办法。

How can I start my app in the best way?

最佳回答
问题回答

Keep in mind to decouple your UI from webservice calling. In ideal case, all webservice communications are in separate class / thread. UI shall be decoupled from it.

审计和调查处可以把你的服务处理班(控制员)放在新的数据上,或者控制人员可以通过意向积极推动这些数据。 您也可考虑执行服务

在我的临时游戏中,我使用定期警报,用服务器(每30分钟)对当地高分卡进行同步,并在高分数发生变化时通过意向通知德国。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签