When the page loads, first it loads in LANDSCAPE_MODE and then after a few seconds the orientation changes to PORTRAIT_MODE the value
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate();
setContentView(R.layout.layout);
if(orientation.equals("true"))
{
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
else
{
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
}
}