Prevent Orientation change in Xamarin Android Application

G-Man picture G-Man · Mar 18, 2014 · Viewed 12.7k times · Source

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

Answer

Sajeetharan picture Sajeetharan · Mar 18, 2014

Set it in the Activity flag like this:

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