0

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

leegill
  • 111
  • 2
  • 10

1 Answers1

0
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

majurageerthan
  • 2,169
  • 3
  • 17
  • 30