Preview Eclipse Graphic Layout

Previously, I could see a working preview of what my layout would look like in eclipse by clicking on "Graphic Layout", then I could click on another tab called "main.xml" and see the actual xml code. Now I have 2 tabs called "Design" and "Source". How can I get my old look back?

+4
source share
4 answers

Try the following: right-click on the XMLcode layout and select the Open With Layout command. It will show you a graphical layout editor for your application, and then you can see the XML-encoded Grapgical view.

If you do not have a graphical layout editor as a choice, you can use the Android Common XML Editor.

+8
source

Right-click the XML file, select open with -> Android Layout Editor .

+5
source

In the package explorer window, go to res / layout and double-click the xml file. When this window appears, you will see a window at the bottom left, called "Graphic Design", where you can switch between the xml editor and the graphic layout editor.

0
source

If you have my problem, which is the most annoying: all the top lines of the graphic layout are missing. what decides is to recompile the application with the previous version, choose a project, than configure and compile with the previous version or the same, possibly too small memory, and too many settings got this from the eclipse area.

0
source

Source: https://habr.com/ru/post/1379606/


All Articles