How to fix Android Activity Orientation to portrait or landscape
we can give this in manifest.xml or through code in oncreate method.
In manifest.xml just add this to the activity attribute tag for portrait add this
for landscape add this
This can be set using code also if you add this line in oncreate() method the activity will set to the screenorientation.
for activity orientation in Landscape add this
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
similar for portrait
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
But you must add these line in OnCreate() and before setContentView().
0 comments:
Post a Comment