Android examples for User Interface:Screen Orientation
is Landscape
//package com.java2s; import android.content.Context; import android.content.res.Configuration; public class Main { public static boolean isLandscape(Context cxt) { return cxt.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE; }/*from w w w. j av a2 s .c o m*/ }