Gradle同步失败,导致“预览无法使用,直到成功完成构建项目同步”

时间:2019-07-28 13:39:23

标签: java android android-studio

我正试图打开一个非常老的android应用程序,因为我需要对其进行升级。 我更新了Gradle插件,Gradle以及SDK工具,并且该项目正在我的设备上编译并运行。

问题是我无法使用XML文件的“预览”窗口,并且不断出现此错误-

  

分级同步失败:EventQueue.isDispatchThread()= false> Toolkit.getEventQueue()= com.intellij.ide.IdeEventQueue@15b8713b             当前线程:线程[ApplicationImpl共享线程> 19,4,想法线程组] 1926886061             SystemEventQueueThread:线程[AWT-EventQueue-0,6,Idea>线程组] 686233834(905毫秒)

我试图清理和重建项目,试图使缓存无效并重新启动,甚至重新启动计算机,因为我认为一个线程丢失了...

有人遇到了这个问题吗?

2 个答案:

答案 0 :(得分:0)

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>
This is a common problem. It can be easily solved by changing res/values/styles.xml to

<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
</style>
Steps :
Go to res/values/
open styles.xml

change from -> style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"

change to -> style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar"

    (Just prepend "Base." to "Theme".)



Save the file and check Preview now.

Preview Works Perfectly now.

答案 1 :(得分:-1)

您可以尝试一次删除.gradle文件夹吗?这可能会解决我认为的问题。