Android Activities and Views -
when developing android app, there rule of thumb when should stop changing layouts , instead switch new activity? factors might influence decision?
there no hard , fast rules, i've got few personal ones:
i think of how users use button. in optimal app, natural use of "back" go through activities aim for. each time user might want use back, should new activity. of course, rules meant broken , you'll need override button control more complex interface.
also, shouldn't tempted call setcontentview()
again. if tempted redo entire layout of page, maybe should move new activity instead.
i check out this guide.
Comments
Post a Comment