I am designing an Android App having a User Interface. I am looking for some architectures that I can follow for error free coding and ease of maintenance. In my earlier apps the code was pretty much procedural, upon any event on the UI element, I would just do whatever was to be done at that place only.
Somehow I found this ugly and new programmers found the code hard to understand and hence maintenance has been a headache.
I looked at State Charts but I am not sure if it is the right architecture. There is ofcourse MVC but that does not solve the problem of easy maintenance of code. I am looking at some kind of StateMachine/Chart engine which which drives the whole system and so is independent of the platform which I can take along in any platform, be it Android, iPhone, WebOS, Windows, anything
Any alternatives ideas about architectures which I am sure exists because UI based software are the most common softwares.