Home > Blockchain >  Android Studio IDE Basics - different Colors on file name
Android Studio IDE Basics - different Colors on file name

Time:10-25

enter image description here

Can Anyone explain what is the meaning of this different colors. Sometimes I also see Blue and green colors on file name.

CodePudding user response:

In IntelliJ IDEA, each file is marked with a color according to its state in the version control you are using. Android Studio is actually based on IntelliJ IDEA, but specializes in developing for the Android platform.

In the editor, each line in a file is checked for its version control state and is marked with a color in the gutter.

More about File Status

If you want to change the default file status colors, go to Settings/Preferences | Version Control | File Status Colors.

  • Related