When you are developing your android application, you also have to take care of other resources such as layout definitions, animations, UI strings, and others. In this section, we will see how you can organize these resources in your project.
You can follow the structure given below to organize your files in Android Studio:
MyApp/
app/
manifest/
manifest.xml
java/
Activity.java
resources/
images/
menu.png
icon.png
layout/
activity.xml
This way, you can organize your resources in Android Studio, i.e. it will make easier for you to access them at the time of application development.