亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述Xamarin.Android 开发中遇到旋转屏幕错误相关的知识,希望能为你提供帮助。
错误信息 : System.NotSupportedException: Unable to find the default constructor on type App5.MyFragment.
Please provide the missing constructor.
错误图片:
文章图片
【Xamarin.Android 开发中遇到旋转屏幕错误】解决方法:干脆不让他旋转屏幕,当下QQ、微信等app都没有旋转等功能,且旋转后重新绘制界面影响用户使用。
this.RequestedOrientation = android.Content.PM.ScreenOrientation.Portrait; //竖屏,禁止横屏
this.RequestedOrientation = Android.Content.PM.ScreenOrientation.Nosensor; //横屏,禁止竖屏
推荐阅读
- CSAPP(第八章 异常控制流2)
- VUE项目用hbuilder 打包为手机APP
- vue+hbuilder监听安卓返回键问题
- 记一次 Android 客户端的逆向
- Android使用Xutil3.0下载文件.md
- 配置cordova的android开发环境(无android studio)
- Android的断点续传的下载在线文件示例
- 微信自动跳转浏览器打开APP(APK)下载链接
- SpringBoot Web Applications:Embedded Containers(嵌入式容器)