I am getting error while creating a Toast
Toast toast = Toast.makeText(this, text, duration);
I am getting cannot resolve ma
I have faced a similar problem but in my case i found out that Xamarin c# and Java in Android studio have differences when calling some functions(same functions).
When using Xamarin and c#, then makeText becomes MakeText and show becomes Show as shown below:
Toast toast = Toast.MakeText(this, "Text", ToastLength.Long);
toast.Show();
Hope this helps:)