Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
diff --git a/tests/res/layout/viewflipper_layout.xml b/tests/res/layout/viewflipper_layout.xml
index fc34092..6480379 100644
--- a/tests/res/layout/viewflipper_layout.xml
+++ b/tests/res/layout/viewflipper_layout.xml
@@ -17,23 +17,23 @@
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:orientation="vertical"
         android:padding="10dip"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content">
 
     <ViewFlipper android:id="@+id/viewflipper_test"
-        android:layout_width="fill_parent"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:flipInterval="1000"
                 android:layout_marginBottom="20dip" >
                 <TextView android:id="@+id/viewflipper_textview1"
-                        android:layout_width="fill_parent"
+                        android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:gravity="center_horizontal"
                         android:textSize="26sp"
                         android:visibility="gone"
                         android:text="@string/hello_world"/>
                 <TextView android:id="@+id/viewflipper_textview2"
-                        android:layout_width="fill_parent"
+                        android:layout_width="match_parent"
                         android:layout_height="wrap_content"
                         android:gravity="center_horizontal"
                         android:textSize="26sp"