I am creating an Android application in Xamarin Forms. I am trying to add a ToolbarItem icon using some of the examples from this forum using XAML like so:
<ToolbarItem Name="Add" Activated="OnAddClick"
Priority="1" Order="Primary" Icon="Create.png" />
My Create.png icon file is located in /Resources/drawable/ located in the Android project. I have done the same thing in Android Studio using a menu layout file and my icons are visible. I am, however, struggling to accomplish the same result in Xamarin Forms. Is this a problem with Xamarin Forms or am I doing something wrong. Any suggestions?