summaryrefslogtreecommitdiffstats
path: root/opengl/tests
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2010-01-08 15:06:28 -0800
committerRomain Guy <romainguy@android.com>2010-01-08 15:11:38 -0800
commite8b6618c4c8cbfca2a63f4fc7ccd41fdfc79f953 (patch)
treeddc41f0d825137ada1578802ed4611ea23045eff /opengl/tests
parente965dda18b1701bee0adef6a73108fe7238a7a17 (diff)
downloadframeworks_native-e8b6618c4c8cbfca2a63f4fc7ccd41fdfc79f953.zip
frameworks_native-e8b6618c4c8cbfca2a63f4fc7ccd41fdfc79f953.tar.gz
frameworks_native-e8b6618c4c8cbfca2a63f4fc7ccd41fdfc79f953.tar.bz2
Deprecate fill_parent and introduce match_parent.
Bug: #2361749.
Diffstat (limited to 'opengl/tests')
-rw-r--r--opengl/tests/gldual/res/layout/gldual_activity.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/opengl/tests/gldual/res/layout/gldual_activity.xml b/opengl/tests/gldual/res/layout/gldual_activity.xml
index f2d59c7..d75acbc 100644
--- a/opengl/tests/gldual/res/layout/gldual_activity.xml
+++ b/opengl/tests/gldual/res/layout/gldual_activity.xml
@@ -17,14 +17,14 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/text"
android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<android.opengl.GLSurfaceView android:id="@+id/gl1"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1" />
<com.android.gldual.GLDualGL2View android:id="@+id/gl2"
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1" />
</LinearLayout>