The navigation bar will only be located to the right of the screen if it is in landscape mode. To detect this, use getResources().getConfiguration().orientationas follows:
String orientation = getResources().getConfiguration().orientation;
if(orientation.equals("ORIENTATION_LANDSCAPE"){
// screen in landscape, do what you want to do
}
source
share