Domanda

I want to run my application always in portrait mode. I searched and found the code below, then I added to manifest file.

android:configChanges="orientation"
android:screenOrientation="portrait"

but my application still chancing orientation when I press CRTL+F12 on AVD. How can I force my application always run in portrait mode?

Ps: I tried the code reverse. (Second line first then first line)

È stato utile?

Soluzione

Did you add that in the activity element, not the application element?

 <activity 
    android:screenOrientation="portrait"  
    android:configChanges="orientation|keyboardHidden" >
 </activity>
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top