Check orientation on Android phone

前端 未结 23 1898
庸人自扰
庸人自扰 2020-11-22 06:26

How can I check if the Android phone is in Landscape or Portrait?

23条回答
  •  迷失自我
    2020-11-22 07:18

    Just simple two line code

    if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
        // do something in landscape
    } else {
        //do in potrait
    }
    

提交回复
热议问题