How to organize Android source code into folders?

I'm organizing my app src in different subfolders. There's no problem with it.

I'm organizing my app src in different subfolders. There's no problem with it. Is this going to cause me to do a lot of extra work to link those packages Isn't that what a smart IDE would do when you refactor the classes via the 'refactor' context menu?

At least Eclipse and IntelliJ should do that. In my manifest, I have Splash" Works fine for me. So, part of my folder structure is for example com/myapp/android/ com/myapp/android/activity com/myapp/android/util com/myapp/android/model.

Java works like that, it uses separate files for separate public classes and folders for packages. If you want a source folder, you will also get a corresponding Java package. A smart IDE should take care of the imports and references for you.

Subpackages should be handled by Android just fine, don't worry about that.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions