Showing posts with label get screen orientiation in android. Show all posts
Showing posts with label get screen orientiation in android. Show all posts

May 15, 2011

How to Get Current Screen Orientation In Android

The following example gives the current screen orientation.

public int getScreenOrientation()
{
        return getResources().getConfiguration().orientation;
}

The above method return integer. We will compare as follows.

 if(getScreenOrientation() == Configuration.ORIENTATION_PORTRAIT)
 {
            //App is in Portrait mode
 }
 else
{
           //App is in LandScape mode
}