我已经看到它可以在相机配置管理器中完成,但不知道在哪里找到该文件???
我已经添加:
<activity android:name="MainActivity"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="portrait"/>
现在主要活动被锁定在肖像上,但是当从内部活动运行zxing扫描仪时,屏幕在扫描期间旋转?
解决方法:
将其添加到Main活动以锁定方向
[Activity (Label = "YourLabel", MainLauncher = true, ScreenOrientation = Android.Content.PM.ScreenOrientation.Landscape)]
要使用代码更改方向,请使用以下命令:
if (scanning)
RequestedOrientation = Android.Content.PM.ScreenOrientation.Portrait;