Xamarin.Android 开发中遇到旋转屏幕错误
Posted 万石谷,粒粒积累;千丈布,根根织成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;//横屏,禁止竖屏
以上是关于Xamarin.Android 开发中遇到旋转屏幕错误的主要内容,如果未能解决你的问题,请参考以下文章
MvvmCross Xamarin Android 在初始屏幕上挂起并带有链接
如何将ImageView放在Xamarin.Android应用程序中,根据设备屏幕大小自行调整大小?
如何在 Xamarin Android 的屏幕上显示全尺寸视图?
使用 LinearLayout 向 ListView 添加标题,Listview 被推离屏幕(Xamarin Android)