Xamarin.Forms之AbsoluteLayout

Posted 做一个清醒者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin.Forms之AbsoluteLayout相关的知识,希望对你有一定的参考价值。

平时用到最多的就是StackLayout Grid RelativeLayout这种,之前看AbsoluteLayout介绍就是,直接写死控件的x y width heght的这种模式,感觉没啥用,但是发现在特定的环境下,这个布局还是很有用的

AbsoluteLayout has the potential to perform layouts without a single measure call. This makes it very powerful for performance. If AbsoluteLayout cannot be used, consider RelativeLayout. If using RelativeLayout, passing Constraints directly will be considerably faster than using the expression API. That is because the expression API uses JIT, and on ios the tree has to be interpreted, which is slower. The expression API is suitable for page layouts where it only required on initial layout and rotation, but in ListView, where its run constantly during scrolling, it hurts performance.

根据上面的这个简介,AbsoluteLayout的性能是优于RelativeLayout的,官方对于性能要求较高的,推荐使用这个布局,不知道对于Grid的性能相比怎么样

To Be Continue !

以上是关于Xamarin.Forms之AbsoluteLayout的主要内容,如果未能解决你的问题,请参考以下文章

Xamarin Forms MvvM框架之FreshMvvM翻译一

Xamarin.Forms之MessagingCenter

Xamarin.Forms之百度地图

(持续更新)Xamarin.Forms之常见的问题

Xamarin.Forms之异步

Xamarin.Forms之AbsoluteLayout