Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.res.Configuration; public class Main { public static boolean isOrientationLandscape(Context context) { if (context.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) { return true; } return false; } }