Issue
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
Solution
Set it in the Activity flag like this:
[Activity (Label = "YourActivityname", MainLauncher = true, ScreenOrientation = ScreenOrientation.Portrait)]
Answered By - Sajeetharan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.