How to show rich layout editor in Android Studio?

How can I show or use the layout editor in Android Studio?

Additional Information
I am new to Java and I just downloaded Android Studio and created a Login example. I can't seem to find the "rich layout editor" that is in the brochure. I want to create an application and host user interface components. I am trying to learn the code by looking at the code created by the rich layout editor.

Additional Information
Android Studio - A rich layout editor that allows you to drag and drop user interface components, view layouts across multiple screen configurations, and more.

+6
source share
1 answer

I get it. To show the rich layout tool, you need to open the file in the layout directory "src / main / res / layout". For me, this file is "login.xml".

Also note that at the bottom of the screen are two tabs β€œDesign” and β€œText”.

enter image description here

+13
source

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


All Articles