如何使用Shell在Xamarin Forms中设置OffscreenPageLimit?

问题描述 投票:0回答:1

我正在使用带有Shell的Xamarin Forms 4.0。我使用ShellSection有Tabbed页面。

如何将Android中的OffScreenPageLimit设置为4?

xamarin xamarin.forms xamarin.android
1个回答
0
投票

您可以通过特定于平台的On<T>方法进行设置:

On<Android>().SetOffscreenPageLimit(numberOfPagesToCache);

re:https://github.com/xamarin/Xamarin.Forms/blob/e8cc89bfc8f210267f7ebbe133b4cf84c9ddef20/Xamarin.Forms.Controls/GalleryPages/PlatformSpecificsGalleries/TabbedPageAndroid.cs#L21

© www.soinside.com 2019 - 2024. All rights reserved.