Need Help in Changing Screen Orientation in Android

后端 未结 3 453
無奈伤痛
無奈伤痛 2021-01-24 16:03

I want to change the screen orientation from portrait to landscape and vice versa when the user rotates his Android mobile phone clockwise/anticlockwise. Can anyone help me how

3条回答
  •  孤独总比滥情好
    2021-01-24 16:26

     public class Accelerometer extends Activity 
        implements AccelerometerListener{
    
        public void onShake(float force) {
             Toast.makeText(this, "Phone shaked : " + force, 1000).show();
        }
     }
    

    You can refer to below link

    http://blog.androgames.net/85/android-accelerometer-tutorial/

提交回复
热议问题