directory structure - Re - structuring android project files in Android Sudio -


since application growing more , more dense each day. thought of re-structuring various files.

by re-structuring, mean add folders seperately screen activites, folder dialog xmls, screen xmls, custom adapters, etc. in other words, need segregate files according significance.

currently, java files listed in src folder (screen activities, custom adapters, business logic, etc.) , xmls (screens, custom list view design, custom dialogs, etc.) present in layout folder.

is feasible? impact have on existing project?

folders synonymous packages -- that's how ide interprets them. putting them in separate folders creates separate packages. that's downside, won't have same scope/permissions if in same package.


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -