1. 程式人生 > >Xamarin.Android 開發中遇到旋轉螢幕錯誤

Xamarin.Android 開發中遇到旋轉螢幕錯誤

錯誤資訊 : System.NotSupportedException: Unable to find the default constructor on type App5.MyFragment.  Please provide the missing constructor.

錯誤圖片:

解決方法:乾脆不讓他旋轉螢幕,當下QQ、微信等app都沒有旋轉等功能,且旋轉後重新繪製介面影響使用者使用。

 this.RequestedOrientation = Android.Content.PM.ScreenOrientation.Portrait;//豎屏,禁止橫屏

 this.RequestedOrientation = Android.Content.PM.ScreenOrientation.Nosensor;//橫屏,禁止豎屏