Add this to your onCreate () depending on your needs, and you're done.
requestWindowFeature(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
or
requestWindowFeature(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
And yet, if you don’t want to change your code, add this to your manifest,
<activity android:name=".activityname" android:label="Something" android:screenOrientation="portrait"> </activity>
source share