diff options
| author | 2010-01-08 15:32:18 -0800 | |
|---|---|---|
| committer | 2010-01-08 15:32:18 -0800 | |
| commit | 3150097fb083fc48df1be8a6f9c2c4f76b4ba0ff (patch) | |
| tree | ddc41f0d825137ada1578802ed4611ea23045eff | |
| parent | 83c7cfe2cb56034f3d1db8bd425ceb49c51be5a6 (diff) | |
| parent | e8b6618c4c8cbfca2a63f4fc7ccd41fdfc79f953 (diff) | |
Merge "Deprecate fill_parent and introduce match_parent. Bug: #2361749."
| -rw-r--r-- | opengl/tests/gldual/res/layout/gldual_activity.xml | 8 |
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 f2d59c74ed..d75acbcb3e 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> |