从Android 2.2开始FILL_PARENT改名为MATCH_PARENT ,从API Level为8开始我们可以直接用MATCH_PARENT来代替FILL_PARENT,他们的定义本质是一样均为-1,只是换了个别名,可能为了更准确些,比如最终在SDK中的定义为:
fill_parent -1 The view should be as big as its parent (minus padding). This constant is deprecated starting from API Level 8 and is replaced by match_parent.
match_parent -1 The view should be as big as its parent (minus padding). Introduced in API Level 8.
wrap_content -2 The view should be only big enough to enclose its content (plus padding). (内容包裹)
本文深入探讨了从Android2.2版本开始,MATCH_PARENT和FILL_PARENT这两个布局属性的演变和使用方式。它们在API级别8之后被引入,用于指定视图的大小应该与其父视图相匹配(减去边距)。文中详细解释了这两个属性的定义、区别及在实际开发中的应用案例。
213

被折叠的 条评论
为什么被折叠?



