We would like to know how to is Context LandScape.
/*from ww w . j a v a2 s. co m*/ import android.content.Context; import android.content.res.Configuration; public class Main { public static boolean isLandScape(Context context) { return context.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE; } }