How To Change Orientation Of Screen In Android Programmatically

[Solved] How To Change Orientation Of Screen In Android Programmatically | C - Code Explorer | yomemimo.com
Question : how to change orientation of screen in android in fragmetn programmatically

Answered by : hannan

In Fragments
getActivity().setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
getActivity().setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);

Source : | Last Update : Tue, 16 Nov 21

Answers related to how to change orientation of screen in android programmatically

Code Explorer Popular Question For C