Here you can find the source of isLandScape(Context context)
public static boolean isLandScape(Context context)
//package com.java2s; 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; }//from w ww . j a v a 2s . c om }