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?