LinearLayout有LayoutParams,ViewGr

2019-02-13  本文已影响0人  世道无情
1. LinearLayout有LayoutParams,ViewGroup没有?

LinearLayout有自己的 LayoutParams,并且继承 ViewGroup.MarginLayoutParams


图片.png
2. LinearLayout有weight,RelativeLayout没有?

像权重 weight、gravity属性,都是 LinearLayout源码中单独定义的,RelativeLayout没有,就像 RelativeLayout有centerInParent、centerVertical等属性,是因为 RelativeLayout定义了,而LinearLayout没有定义

3. ListView可以设置头布局和脚布局,RecyclerView不行?

因为ListView源码中定义了 HeaderViewListAdapter,所以可以设置,而RecyclerView中没有定义

上一篇下一篇

猜你喜欢

热点阅读