Prevent Orientation change in Xamarin Android Appl

2020-08-09 06:43发布

问题:

Is it possible to prevent the orientation of an Android application from changing ? I have an application that previews the phone camera and I would like the orientation not to change.

I have tried adding this to the manifest but it did not make a difference

<application android:label="TextureViewCameraStream" android:hardwareAccelerated="true">
    </application>
    <activity
       android:screenOrientation="portrait"
       android:configChanges="orientation|keyboardHidden">
    </activity>

I am using Xamarin for Android and C#

Thank you

回答1:

Set it in the Activity flag like this:

[Activity (Label = "YourActivityname", MainLauncher = true, ScreenOrientation = ScreenOrientation.Portrait)]