Value equals to match_parent or fill_parent in dimens
Use px instead of dp as suggested by Jarett Millard in the comments
<!--wrap_content-->
<dimen name="common_wrap_content">-2px</dimen>
<!--match_parent-->
<dimen name="common_match_parent">-1px</dimen>
Use -1px and -2px instead of dp. The px values will not scale based on the device’s screen density. – Jarett Millard Feb 24 ‘15 at 17:33