我想鎖定手機上的整個應用程序的方向大小布局只能肖像,但在平板電腦大小的佈局上允許縱向和橫向。Xamarin Android鎖定方向只能通過手機上的肖像
我知道我可以將活動歸因爲使用特定方向,但是這適用於兩種佈局尺寸。
[Activity(
Label = "Brs.Members.Droid"
, MainLauncher = true
, Icon = "@mipmap/icon"
, Theme = "@style/Theme.Splash"
, NoHistory = true
, ScreenOrientation = ScreenOrientation.Portrait)]
public class SplashScreen : MvxSplashScreenActivity
{
public SplashScreen() : base(Resource.Layout.SplashScreen)
{
}
}
有沒有一種方法可以排除手機尺寸設備上的橫向佈局?
這似乎是最好的解決辦法,但我會建議從鏈接的問題增加更多的細節。 –
謝謝,請檢查編輯。 –