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中没有定义
网友评论