Cannot resolve symbol Theme, ThemeOverlay

一个人想着一个人 提交于 2019-11-29 05:32:37

1)Close the project from the File menu.

2)Open the project again as existing Android Studio project.

This fix my problem.

  1. In the app/build.gradle remove the line responsible for the appcompat package (something like implementation 'com.android.support:appcompat-v7:27.1.1')
  2. Perform the Gradle sync. It will break and show a lot of errors
  3. Bring the original line back
  4. Perform the Gradle sync once again

This will magically solve the problem that for no reason appeared in the 3.0.1

Found Easiest Way

  • Close project (File> Close Project)
  • Import / Re-Open project again (NOT from Recent)

The error should be gone.

If(that_did_not_work)

  • Open build.gradle, remove appcompact-v7 dependency and sync.
  • Again add that dependency and sync.

Error Gone!

I had this same error so i compared it to gradle file of another project which wasn't showing error. In your build.gradle(Module:app) under dependencies, add the following line:

implementation 'com.android.support:preference-v7:28.0.0'

Something got messed up on the indexing of the Project when you updated the version.

To fix go to the menu:

File -> Invalidate Caches/Restart

that will reopen and re-index the whole project, the error should be gone.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!