zoukankan      html  css  js  c++  java
  • 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 it's run constantly during scrolling, it hurts performance.

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

    To Be Continue !

  • 相关阅读:
    软件测试homework2
    软件测试homework1
    ubuntu14 安装QUME+xv6
    判断两线段是否相交 模板
    并查集 HDU1558
    并查集 HDU1272
    并查集 HDU1232
    数据结构之单向链表 UVa11988
    Java大数 字符串处理 HDU2100
    Java大数中的小数 HDU1753
  • 原文地址:https://www.cnblogs.com/yz1311/p/5971865.html
Copyright © 2011-2022 走看看