Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the yellow highlighting of an imports clause in Android Studio signify?

As you can see here:

enter image description here

...one of my "imports" seems to have "the yaller janders"

What does that mean?

like image 525
B. Clay Shannon-B. Crow Raven Avatar asked Apr 03 '14 19:04

B. Clay Shannon-B. Crow Raven


People also ask

What does yellow file mean in Android Studio?

There can be many reasons for a file/directory being highlighted in yellow as you have mentioned in the questions. Generated files from importing external libraries.


1 Answers

It's annotation class import, e.g. somewhere in your source file you have "@SerializedName"

Annotation JavaDoc

like image 141
Eugene Avatar answered Oct 07 '22 01:10

Eugene