Reputation: 3
I'm working on an android Amazon Fire TV app, and for debug purposes, I'd like to force a portrait view orientation inside of the permanent landscape 16:9 display.
Is this possible? How would I go about doing this?
Thanks, Thomas
Upvotes: 0
Views: 408
Reputation: 2256
Add this in your manifest file inside your activity tag
android:screenOrientation="portrait"
Upvotes: 2