In addition, some code / IDE editors will wrap or supplant the associated generated code file names based on the capital letter in your class file.
For example, Android Studio ( https://developer.android.com/sdk/installing/studio.html ) will read the name of the Java activity class and insert a hyphen or underline when switching from capital to lowercase for the layout file name.
Example: when creating a new action (which is just a new class) called " MyActivity.java ", Android Studio will also create a new layout file called " activity_my.xml " and a link to it in the java file.
Adhering to the naming conventions for your classes, your source code will not only make it easier to track and learn others, but it will be much easier for you to navigate and track the files in your project. Naming conventions are all.
source share