美文网首页
傻傻分不清楚的LayoutParams

傻傻分不清楚的LayoutParams

作者: 钟离四郎 | 来源:发表于2018-07-25 10:31 被阅读0次

LayoutParams的继承树关系,如下:


image.png

从上面图可以总结如下:

  • ViewGroup下的LayoutParams是所有的LayoutParams的父类
  • 平时我们经常使用的控件除Viewpager、ListView等(上图绿色圈中的对应的View)外,其他的控件诸如LinearLayout、RecyclerView等(上图红色圈中的对应的View)的LayoutParams都是继承于MarginLayoutParams
  • 对于某种具体ViewGroup,通常是会重写generateLayoutParams方法的,用来返回对应情况下的LayoutParams,不重写则是返回ViewGroup 的LayoutParams如下:
image.png

相关文章

网友评论

      本文标题:傻傻分不清楚的LayoutParams

      本文链接:https://www.haomeiwen.com/subject/dlsymftx.html