Reputation: 265
I installed android studio and when i open an xml file i cant preview it or see pallete
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
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