Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
diff --git a/tests/res/layout/textview_phonenumber.xml b/tests/res/layout/textview_phonenumber.xml
index 7df42c8..d0975c6 100644
--- a/tests/res/layout/textview_phonenumber.xml
+++ b/tests/res/layout/textview_phonenumber.xml
@@ -15,21 +15,21 @@
 -->
 
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
-                android:layout_width="fill_parent"
+                android:layout_width="match_parent"
                 android:layout_height="wrap_content">
 
     <TextView android:id="@+id/phoneNumber_default"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:editable="true"/>
 
     <TextView android:id="@+id/phoneNumber_true"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:phoneNumber="true"/>
 
     <TextView android:id="@+id/phoneNumber_false"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:phoneNumber="false"
         android:editable="true"/>