Android examples for android.app:Screen
is Land Scape
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 w w .j ava 2 s .co m*/ }