Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm little confused about two properties match_parent and fill_parent of layout. It seems both are same. I want to know how this properties are different? TIA

share|improve this question

4 Answers

up vote 249 down vote accepted

They're the same thing (in API Level 8+). Use match_parent.

FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher), which means that the view wants to be as big as its parent (minus padding)

...

fill_parent: 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.

http://developer.android.com/reference/android/view/ViewGroup.LayoutParams.html

share|improve this answer
1  
if I write app for both 1.6 and 2.2, I will use fill_parent for compatibility, is it right? – Emerald214 Aug 2 '11 at 14:09
2  
@Emerald I haven't tried any 1.6 development, but that sounds about right. – Matt Ball Aug 2 '11 at 14:17
5  
@ Emerald214 Yes, 1.6 and 2.1 gives an error for match_parent. use fill_parent in these cases. – Oh Danny Boy Jan 26 '12 at 20:31
3  
There must be some differences right? Otherwise why Google deprecated it and renamed the new one? – Halim Jul 20 '12 at 4:59
3  
@Halim No, there is no differece: Both are defined as constant -1. I you feel better about it, I don't get the impovement in that either... :-) – arpy Aug 3 '12 at 11:51
show 1 more comment

Google changed the name to avoid confusion;

The name fill parent implies that the child will fill the interior space of its parent, when what it does is match the outer dimensions of its parent.

Thus match parent better describes the resulting behavior.

Both constants resolve to -1 in the end, and so result in the identical behavior in the app. Ironically enough, this name change made to clarify things seems to have added confusion rather than eliminating it.

share|improve this answer
...except with RelativeLayout's child with width=match_parent and, say, leftOf another. It does not match its parent's dimension, it fills what remains in it. That serves only to CAUSE confusion. – kaay May 13 at 5:52

Functionally no difference, Google just changed the name from fill_parent to match_parent, from API level 8 (Android 2.2). FILL_PARENT is still available for compatibility reason.

LayoutParams.FILL_PARENT and LayoutParams.MATCH_PARENT both have value -1. Not sure what tempted google to change from Fill Parent to Match Parent :)

Since most of the phones are >= Android 2.2 .. you should use Match Parent for future compatibility... not sure when they will discontinue the older Fill Parent constant!

share|improve this answer

For compatibility sake it's better to stick to fill_parent.

share|improve this answer
5  
Only backwards compatibility though. If FILL_PARENT is deprecated (as mentioned by Matt Ball above), then the only option for forward compatibility is MATCH_PARENT. – user577537 Jul 2 '12 at 15:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.