Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
diff --git a/tests/res/layout/textview_selectallonfocus.xml b/tests/res/layout/textview_selectallonfocus.xml
index 2b2084c..b1c3682 100644
--- a/tests/res/layout/textview_selectallonfocus.xml
+++ b/tests/res/layout/textview_selectallonfocus.xml
@@ -15,28 +15,28 @@
 -->
 
 <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/selectAllOnFocus_default"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:focusable="true"/>
 
     <TextView android:id="@+id/selectAllOnFocus_true"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:selectAllOnFocus="true"
         android:focusable="true"/>
 
     <TextView android:id="@+id/selectAllOnFocus_false"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:selectAllOnFocus="false"
         android:focusable="true"/>
 
         <TextView android:id="@+id/selectAllOnFocus_dummy"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:focusable="true"/>