Android Studio: Failed to initialize editor

Viewed 13528

I'm new with Android Studio technology. I've just launched a new empty project from scratch on Windows 10 machine. At first in my activity_main.xml file I could see an error "editor is unavaible until next gradle synch". After clicking on "Synch Project with Gradle Files" the error message turns into "Failed to initialize editor" as you can see on the pic below:

enter image description here

As you can see build console shows no errors. Also green arrow on the top bar is muted. How can I fix this issue?

Android Studio version: 4.02 JDK version: 1.8.0_261

Note I've got Avast Antivirus installed on my computer. I'm not sure if it changes anything but in few similar topics people repored this program as an issue interfering with Android Studio. However my avast quarantine remains empty.

Update/Solution In my case it turned out that downgrading my Android Studio from 4.0.2 to 3.5.3 version solved this problem. Now everything works fine.

6 Answers

I don't know why it happened, it happened for me on a project that was working earlier. Helped me File -> Invalidate Cashes / Restart in Android Studio

I don't know for sure what causes this error but you can solve it by first closing the project and deleting the project.xml file in the .idea\codeStyles\ directory of your project, as soon as you reopen your project you will get a popup prompting you to reconfigure this file, after that everything should be okay,

In my case, I simply had to exit Android Studio and relaunch it. :)

This will Helps me all the time :

Open the project then

File > Invalidate Caches and Restart > Invalidate Restart This step will fix your project. step 1

step 2

None of the solutions here worked for me. I tried invalidating caches, restarting AS, rebooting my PC, deleting .gradle .idea, build and app/build
The only way I was able to make it work as before was to roll back to a saved copy I (luckily) had (v3.6.3).
The problem happened immediately after I naively clicked on the offered updates (AS+gradle).

I had to clean install android studio but it didn't fix it until I deleted this folder %APPDATA%\Google\AndroidStudio*.

This might be because of Toolbox since that's what I was using to update android studio when this happend.

Related