码迷,mamicode.com
首页 > 其他好文 > 详细

Xamarin.Forms之AbsoluteLayout

时间:2016-10-18 02:37:20      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

平时用到最多的就是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

标签:

原文地址:http://www.cnblogs.com/yz1311/p/5971865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!