Android app resets on orientation change, best way to handle?

后端 未结 5 575
余生分开走
余生分开走 2021-01-03 08:02

So I am making a basic chess app to play around with some various elements of android programming and so far I am learning a lot, but this time I am lost.

When the o

5条回答
  •  半阙折子戏
    2021-01-03 08:15

    Or stick this line in your OnCreate so it doesn't roate. Problem solved.

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    

提交回复
热议问题