Can I check if the screen of the phone is facing up or down?
I want to receive events when the phone is turned upside down and normally
int orientation = this.getResources().getConfiguration().orientation;
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
// code for portrait mode
} else {
// code for landscape mode
}
Answer from
and check this answer for knowing the rotation