user1798049
user1798049

Reputation: 265

how to see preview of xml in Android Studio

I installed android studio and when i open an xml file i cant preview it or see pallete enter image description here

If i go to View-tool windows - palette it wont show again. I want to see preview of xml file like in eclipse

Upvotes: 12

Views: 16417

Answers (1)

rhoeting
rhoeting

Reputation: 396

The issue is you are looking at the XML file located in this project location:

build/res/all/debug

You need to view it in this location:

src/main/res/layout

Upvotes: 10

Related Questions