Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to make android apps only work on screen flipped one way?

I'm making an android app but it works best if the phone/tablet is flipped horizontal.. how do I make the screen lock at that and make it to where it doesn't flip going vertical?

like image 454
user1042757 Avatar asked Dec 03 '25 18:12

user1042757


1 Answers

Set android:screenOrientation="landscape" in the <activity> element of your AndroidManifest.xml file.

like image 187
aganders3 Avatar answered Dec 06 '25 08:12

aganders3