Fred Mériot
Fred Mériot

Reputation: 4357

Android studio and eclipse + ADT

I'am looking at android studio tutorials on youtube and I find it very interesting. I'd like to know if android studio can be used in complement of Eclipse +ADT.

Is it possible to use android studio and it's WYSIWYG features to create the layout of the app and then go back in eclipse to edit the java code of it ?

thank you.

Upvotes: 2

Views: 158

Answers (1)

Scott Barta
Scott Barta

Reputation: 80010

You can do it, but it's going to be so inconvenient that I'm not sure why you'd want to.

The biggest problem you'll run into is that Eclipse and Android Studio can't share the same project. They can share the same source tree on disk, but you'll need to maintain separate project + build files for each environment. See Using gradle project in both Eclipse and IDEA for inspiration on that.

Upvotes: 2

Related Questions