Skip to content Skip to sidebar Skip to footer

Content Assist Doesn't Work In Xml With Support Library

I had to use Navigation Drawer from the support library v4 in my Android app. I linked the library with my project in eclipse. Copied it to the libs folder in my Project. Library

Solution 1:

Well, I was doing the same thing from this website and was bounded in the same problem.

You must understand that you need to define those color resources yourself in the strings.xml file. Define your own color combination. While I understand that the tutorial must have described this but I think you are the one who can select the colors liked to you, the best.

Define the colors in strings.xml by using this tag :

<colorname="name-of-color">hex-code-here</color>

Access the resource using : @color/name-of-color in your xml layout files.

Post a Comment for "Content Assist Doesn't Work In Xml With Support Library"