How can I make it so the screen orientation is always landscape?
Do I need to add something to the manifest.xml?
manifest.xml
Just two steps needed:
Apply setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); after setContentView().
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
In the AndroidMainfest.xml, put this statement
Hope it helps and happy coding :)