Android Development: MVC vs MVVM
Posted
by
Mel
on Programmers
See other posts from Programmers
or by Mel
Published on 2012-04-05T09:56:26Z
Indexed on
2012/04/05
11:42 UTC
Read the original article
Hit count: 367
design-patterns
|android
I've started coding for android and I'm having difficulty trying to properly partition my code. I always end up with a very tight coupling between my UI logic and the actual controls I use to represent them.
I have background in both WPF MVVM and ASP.net MVC so I'm familiar with those patterns. After some digging, I found Android Binding. It seems nice and fits nicely with my WPF background. However, it bugs me that its not built in. I'm pretty sure that the android makers have thought of this when designing the android programming interface. So my question is, what is the best practice pattern to use when developing in android, if any. I have looked and looked at their site but didn't find anything...
© Programmers or respective owner