Search code examples
androidxmlintellij-ideaandroid-actionbarandroid-actionbar-compat

Can't Find Theme.AppCompat.Light for New Android ActionBar Support in IntelliJ IDEA?


Possible duplicate of Can't Find Theme.AppCompat.Light for New Android ActionBar Support but here solution is only for ecllipse, How to solve this error in IntelliJ IDEA ? Please explain step by step.


Solution

  • You only included the jar. But jars do not include resources (and therefore not the theme Theme.AppCompat.Light). You have to either include the whole lib with its resources (you can find it in your sdk folder in the extras folder) or you include it with gradle like @MichaelBarany already suggested.