Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
diff --git a/res/layout/contact_item.xml b/res/layout/contact_item.xml
index 4975008..524e237 100644
--- a/res/layout/contact_item.xml
+++ b/res/layout/contact_item.xml
@@ -16,7 +16,7 @@
 
 <RelativeLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
-    android:layout_width="fill_parent"
+    android:layout_width="match_parent"
     android:paddingLeft="0dip"
     android:paddingRight="9dip"
     android:minHeight="48dip">
@@ -44,7 +44,7 @@
         android:paddingLeft="2dip"
         android:layout_centerVertical="true"
         android:layout_toRightOf="@id/badge"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content" />
 
     <ImageView
@@ -58,7 +58,7 @@
 
     <View
         android:id="@+id/separator"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="1px"
         android:layout_alignParentBottom="true"
         android:background="@android:drawable/divider_horizontal_bright" />