Android Orientation Change

后端 未结 4 1659
走了就别回头了
走了就别回头了 2021-01-01 02:27

My tabbed app does not redisplay the view with an orientation change.

I added

android:configChanges=\"keyboardHidden|orientation\"

4条回答
  •  囚心锁ツ
    2021-01-01 03:00

    In Mono for Android with a target API greater then 13 I found that the line which would go inside the namespace but outside the Activity class:

    [Activity (Label = "Viewer",  ConfigurationChanges = ConfigChanges.Orientation|ConfigChanges.ScreenSize)]
    

    lead to the triggering of OnConfigurationChanged() even though changing the manifest had not.

提交回复
热议问题