Computer Science, asked by zahrarida086, 9 months ago

For layout_width and layout_height, what's the difference between
match_parent and wrap_content?

Answers

Answered by LEGEND778
2

Answer:

fill_parent and match_parent are the same, used when we want the height or width of a view to be as big as its parent view, fill_parent being deprecated. wrap_content is used when we want the view to occupy only as much space as required by it.

Explanation:

Similar questions