I'm using Android Studio, and I'm encountering an issue where it will auto-complete things in xml layout files such as dimens, colors, and drawable files that are defined in the same project, but if these resources are from imported libraries, it will not auto-complete.
If I type the value in manually, it will recognize it as a correct, existing value, and the project will compile and run correctly. So, I'm assuming this is just an issue with the development environment not being able to find it to populate the list for autocomplete.
The strange thing about this, is that if I'm in a *.java file, it will recognize values from the imported library and autocomplete them just fine...
Has anyone else encountered this issue? Is there something I should be including in the build.gradle file which would make it recognize these values? Any advice or assistance would be greatly appreciated.
Thanks.