Adding Additional Activity .cs and Layout axml Using Visual Studio 2015.
I\'m very new to Xamarin and Android
I had to modify Build Action
for my layout file and re set the original Build Action
as it was previously set. This made my visual studio to regenerate the resource ids
in Resource.designer.cs
file.
Step #1:
Go to properties of the layout file that is missing its ids and click the Build Action DropDown.
Step #2:
Select something from the dropdown other than AndroidResource
.
Step #3:
Reselect AndroidResource
from that Build Action.
Now, you will have your Resource.designer.cs
file regenerated and it will have the reference ids to your controls in the layout file.