Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
diff --git a/libcore-disabled/SoundTest/res/layout/riproaring_activity.xml b/libcore-disabled/SoundTest/res/layout/riproaring_activity.xml
index 2d393f9..a21599e 100644
--- a/libcore-disabled/SoundTest/res/layout/riproaring_activity.xml
+++ b/libcore-disabled/SoundTest/res/layout/riproaring_activity.xml
@@ -14,7 +14,7 @@
      limitations under the License.
 -->
 
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content">
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content">
 	<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" />
 		
 	<TextView android:id="@+id/label" android:textStyle="bold" android:textColor="#00000000" android:textSize="16sp" 
@@ -22,7 +22,7 @@
 		android:text="@string/textview_text" />
 		
 	<EditText android:id="@+id/entry" 
-        android:layout_width="fill_parent" 
+        android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:background="@android:drawable/editbox_background"
         android:text="@string/edittext_text"