I found both fill_parent and match_parent means the same thing
- fill_parent means that the view wants to be as big as its parent, minus the parent's padding, if any.
- match_parent means that the view wants to be as big as its parent, minus the parent's padding, if any.
Only One difference I found that is fill_parent is deprecated starting from API Level 8 and is replaced by match_parent
But while creating layout I didn't notice any difference between these two. If both are the same then why fill_parent is deprecated. Can anyone show any practical difference between these two or any other difference between fill_parent and wrap_content except deprecated word.
I have gone through http://developer.android.com/reference/android/view/ViewGroup.LayoutParams.html
