我正在使用Xamarin.Android中的一个应用程序,我需要每个人都在景观中。我设法使用ScreenOrientation = ScreenOrientation.Landscape
在后端的活动标志中锁定方向。
然而,设计师的定位仍然是纵向。
有谁知道我怎么能解决这个问题,因为我正在设计的布局只适用于横向工作,当设计师不断地将我翻转回肖像时,这是布局上的一个主要痛苦。
编辑:要指出,当我运行应用程序时,锁定方向会起作用,但在我处理前端设计(XML和设计器)时却不行;
答案 0 :(得分:0)
只需在活动标记
中添加ScreenOrientation = Android.Content.PM.ScreenOrientation.Landscape
喜欢以下
[Activity(Label = "my activity",ScreenOrientation = Android.Content.PM.ScreenOrientation.Landscape]