Is there any way to change Activity
orientation from Fragment
.
I am aware about following but it's not working.
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_XYZ);
I put following as an Activity property and and it work.
android:configChanges="orientation|screenSize"
CLOSED