Reputation: 167
I'm trying to use the android designer in in an Android App. When I click on my *.axml file it only opens the xml portion of it. The android designer does not show.
Things I've tried:
Upvotes: 1
Views: 3032
Reputation: 39102
This can happen when the AXML file you created is not inside the Resources/layout folder of your Xamarin.Android project. It is essential for layout (AXML) files to be there for the designer to work properly, as it is an important Android convention on which the designer stands.
Upvotes: 6