How can I check if the Android phone is in Landscape or Portrait?
Use getResources().getConfiguration().orientation it's the right way.
getResources().getConfiguration().orientation
You just have to watch out for different types of landscapes, the landscape that the device normally uses and the other.
Still don't understand how to manage that.