is Landscape - Android User Interface

Android examples for User Interface:Screen Orientation

Description

is Landscape

Demo Code


//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*/
}

Related Tutorials