How to redesign the UI of a large project?

Posted by jem88 on Programmers See other posts from Programmers or by jem88
Published on 2014-08-19T21:40:13Z Indexed on 2014/08/19 22:31 UTC
Read the original article Hit count: 154

Filed under:
|

I'm currently working at a quite big Android project (a social network, you can see it here if is useful to answer the question).

We decided to restyle the whole app, changing all the UI design. The code I actually have is complex, there are many controllers, and it's a little messy too.

Is it "better" in terms of time and code cleanliness to take one controller per time, and rewrite it entirely, or to modify one controller per time?

The layout change entirely anyway, so for that I know I've to restart from scratch.

Maybe it could seem a stupid question, but with the "time" variable I really can't see the best way.

© Programmers or respective owner

Related posts about refactoring

Related posts about Maintenance