Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
width = "fill_parent"我是新手,我会说和有什么区别width = "wrap_content"?
width = "fill_parent"
width = "wrap_content"
fill_parent将使元素的宽度或高度与父元素(即容器)一样大。
fill_parent
wrap_content将使宽度或高度与包含其中的元素一样大。
wrap_content
来自android docs.-
FILL_PARENT(在 API 级别 8 及更高版本中重命名为 MATCH_PARENT),这 意味着视图希望与其父级一样大(减去填充) WRAP_CONTENT,这意味着视图希望足够大以包含其内容>(加上填充)
FILL_PARENT(在 API 级别 8 及更高版本中重命名为 MATCH_PARENT),这 意味着视图希望与其父级一样大(减去填充)
WRAP_CONTENT,这意味着视图希望足够大以包含其内容>(加上填充)