Xamarin.Android Support Library
It looks like there actually is a namespace collision with MyApp.Android and Android.Support.etc - to resolve the fragment issue, put this up with the usings:
using Fragment = Android.Support.V4.App.Fragment;
That should resolve the namespace correctly (or you could change your namespace from Myapp.Android, if it becomes too much trouble).