2

How can I disable screen orientation in Android Instant app???

I used android:screenOrientation="portrait" in every Manifest file (in 3 files) but it doens`t help!

Prags
  • 2,457
  • 2
  • 21
  • 38

2 Answers2

1

Thanks for reporting the bug Igor. The fix for setting screenOrientation through Manifest in instant apps is coming soon.

mmittal
  • 11
  • 2
0

You can do it something like

From Fragment

 getActivity().setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);  // programmatically


From Activity

setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
Prags
  • 2,457
  • 2
  • 21
  • 38