diff options
author | Philip Milne <pmilne@google.com> | 2011-05-13 17:29:00 +0100 |
---|---|---|
committer | Philip Milne <pmilne@google.com> | 2011-05-26 09:28:26 -0700 |
commit | 3f8956d82bb40b15acee26017db0d13ddf43c80a (patch) | |
tree | a84c2975156c788b004126052d3d66f0ef1c2654 /tests/GridLayoutTest | |
parent | 73a4b2b3be14255f87c4108d4e414b9137da6510 (diff) | |
download | frameworks_base-3f8956d82bb40b15acee26017db0d13ddf43c80a.zip frameworks_base-3f8956d82bb40b15acee26017db0d13ddf43c80a.tar.gz frameworks_base-3f8956d82bb40b15acee26017db0d13ddf43c80a.tar.bz2 |
Introduction of GridLayout.
Change-Id: Ia2ec315e7d29dcc5aa13b080fc6ce00708e9c034
Diffstat (limited to 'tests/GridLayoutTest')
16 files changed, 740 insertions, 0 deletions
diff --git a/tests/GridLayoutTest/Android.mk b/tests/GridLayoutTest/Android.mk new file mode 100644 index 0000000..a02918b --- /dev/null +++ b/tests/GridLayoutTest/Android.mk @@ -0,0 +1,26 @@ +# +# Copyright (C) 2010 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := $(call all-subdir-java-files) + +LOCAL_PACKAGE_NAME := GridLayoutTest + +LOCAL_MODULE_TAGS := tests + +include $(BUILD_PACKAGE) diff --git a/tests/GridLayoutTest/AndroidManifest.xml b/tests/GridLayoutTest/AndroidManifest.xml new file mode 100644 index 0000000..53ca4ce --- /dev/null +++ b/tests/GridLayoutTest/AndroidManifest.xml @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.android.test.layout"> + + <uses-permission android:name="android.permission.INTERNET"/> + <uses-sdk android:minSdkVersion="11"/> + + <application> + <activity android:name="Activity0" android:label="Activity0"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity1" android:label="Activity1"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity2" android:label="Activity2"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity3" android:label="Activity3"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity4" android:label="Activity4"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity5" android:label="Activity5"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity6" android:label="Activity6"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + + <activity android:name="Activity7" android:label="Activity7"> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + </application> + + +</manifest> diff --git a/tests/GridLayoutTest/res/layout/grid0.xml b/tests/GridLayoutTest/res/layout/grid0.xml new file mode 100644 index 0000000..1c291f0 --- /dev/null +++ b/tests/GridLayoutTest/res/layout/grid0.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<GridLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> +</GridLayout>
\ No newline at end of file diff --git a/tests/GridLayoutTest/res/layout/grid3.xml b/tests/GridLayoutTest/res/layout/grid3.xml new file mode 100644 index 0000000..ace7b4c --- /dev/null +++ b/tests/GridLayoutTest/res/layout/grid3.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<GridLayout + xmlns:android="http://schemas.android.com/apk/res/android" + + android:layout_width="match_parent" + android:layout_height="match_parent" + > + + <Button + android:text="fill" + android:width="200dip" + android:height="100dip" + android:layout_marginLeft="50dip" + android:layout_row="0" + android:layout_column="0" + android:layout_gravity="fill_horizontal" + /> + + <EditText + android:layout_row="0" + android:layout_column="1" + /> + + <Button + android:text="left" + android:layout_row="1" + android:layout_column="0" + /> + + <EditText + android:layout_row="1" + android:layout_column="1" + /> + + <Button + android:text="right" + android:layout_row="2" + android:layout_column="0" + android:layout_gravity="right" + /> + + <EditText + android:layout_margin="50dip" + android:textSize="100dip" + android:layout_row="2" + android:layout_column="1" + /> + + <Button + android:text="center" + android:layout_row="3" + android:layout_column="0" + android:layout_gravity="center_horizontal" + /> + + <EditText + android:layout_height="fill_parent" + android:layout_row="3" + android:layout_column="1" + /> + +</GridLayout> diff --git a/tests/GridLayoutTest/res/layout/grid4.xml b/tests/GridLayoutTest/res/layout/grid4.xml new file mode 100644 index 0000000..116a256 --- /dev/null +++ b/tests/GridLayoutTest/res/layout/grid4.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<GridLayout + xmlns:android="http://schemas.android.com/apk/res/android" + + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <Button + android:text="fill" + android:layout_margin="100dip" + android:layout_marginLeft="100dip" + android:layout_marginBottom="100dip" + android:layout_marginTop="100dip" + android:layout_marginRight="100dip" + android:layout_row="0" + android:layout_column="0" + android:layout_gravity="fill_horizontal" + /> +</GridLayout> diff --git a/tests/GridLayoutTest/res/layout/grid5.xml b/tests/GridLayoutTest/res/layout/grid5.xml new file mode 100644 index 0000000..9b87f18 --- /dev/null +++ b/tests/GridLayoutTest/res/layout/grid5.xml @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<GridLayout + xmlns:android="http://schemas.android.com/apk/res/android" + + android:layout_width="match_parent" + android:layout_height="match_parent" + + android:orientation="horizontal" + android:columnCount="2" + > + + <TextView + android:text="Name:" + /> + + <EditText + android:text="fill" + android:width="200dip" + android:height="100dip" + android:layout_marginLeft="50dip" + android:layout_gravity="fill_horizontal" + /> + + <TextView + /> + +<!-- + <TextView + android:layout_row_weight="1" + android:layout_column_weight="1" + /> +--> + + <EditText + android:text="left" + /> + + <EditText/> + + <EditText + android:text="right" + android:layout_gravity="right" + /> + + <EditText + android:layout_margin="50dip" + android:textSize="100dip" + /> + + <Button + android:text="center" + android:layout_gravity="center_horizontal" + /> + + <EditText + android:layout_height="fill_parent" + /> + +</GridLayout> diff --git a/tests/GridLayoutTest/res/layout/grid6.xml b/tests/GridLayoutTest/res/layout/grid6.xml new file mode 100644 index 0000000..7486a2d --- /dev/null +++ b/tests/GridLayoutTest/res/layout/grid6.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2011 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<GridLayout + xmlns:android="http://schemas.android.com/apk/res/android" + + android:layout_width="match_parent" + android:layout_height="match_parent" + + android:columnCount="2" + android:useDefaultMargins="true" + > + + <TextView android:text="Name:"/> + + <EditText/> + + <TextView android:text="Rank:"/> + + <EditText/> + + <TextView android:text="Serial Number:"/> + + <EditText/> + +</GridLayout> diff --git a/tests/GridLayoutTest/res/layout/grid7.xml b/tests/GridLayoutTest/res/layout/grid7.xml new file mode 100644 index 0000000..b97a00b --- /dev/null +++ b/tests/GridLayoutTest/res/layout/grid7.xml @@ -0,0 +1,71 @@ +<!-- Copyright (C) 2010 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<GridLayout + xmlns:android="http://schemas.android.com/apk/res/android" + + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <LinearLayout + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="10dip" > + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingRight="5dip" + android:text="flabe" /> + + <Button android:id="@+id/initialActivity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="bax" /> + </LinearLayout> + + <LinearLayout + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:paddingTop="5dip" > + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingRight="5dip" + android:text="bar" /> + + <EditText android:id="@+id/numberOfEvents" + android:layout_marginLeft="2dip" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@android:drawable/editbox_background" + android:numeric="integer" + android:scrollHorizontally="true" + android:maxLines="1" /> + </LinearLayout> + + <Button android:id="@+id/start" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:paddingTop="10dip" + android:text="Foo" /> + +</GridLayout> + + diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity0.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity0.java new file mode 100644 index 0000000..660c1c3 --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity0.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; + +public class Activity0 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.grid0); + } +} diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity1.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity1.java new file mode 100644 index 0000000..e6645f5 --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity1.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; +import android.widget.GridLayout; + +public class Activity1 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(new GridLayout(getBaseContext())); + } +} diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity2.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity2.java new file mode 100644 index 0000000..6359903 --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity2.java @@ -0,0 +1,127 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.content.Context; +import android.os.Bundle; +import android.view.View; + +import android.widget.*; + +import static android.text.InputType.TYPE_CLASS_TEXT; +import static android.view.inputmethod.EditorInfo.*; +import static android.widget.GridLayout.*; + +public class Activity2 extends Activity { + + public static View create(Context context) { + GridLayout vg = new GridLayout(context); + vg.setUseDefaultMargins(true); + + Group row1 = new Group(1, CENTER); + Group row2 = new Group(2, CENTER); + Group row3 = new Group(3, BASELINE); + Group row4 = new Group(4, BASELINE); + Group row5 = new Group(5, FILL); + Group row6 = new Group(6, CENTER); + Group row7 = new Group(7, CENTER); + + Group col1a = new Group(1, 5, CENTER); + Group col1b = new Group(1, 5, LEFT); + Group col1c = new Group(1, RIGHT); + Group col2 = new Group(2, LEFT); + Group col3 = new Group(3, FILL); + Group col4 = new Group(4, FILL); + + { + TextView v = new TextView(context); + v.setTextSize(48); + v.setText("Email setup"); + vg.addView(v, new LayoutParams(row1, col1a)); + } + + { + TextView v = new TextView(context); + v.setTextSize(20); + v.setText("You can configure email in just a few steps:"); + vg.addView(v, new LayoutParams(row2, col1b)); + } + + { + TextView v = new TextView(context); + v.setText("Email address:"); + vg.addView(v, new LayoutParams(row3, col1c)); + } + + { + EditText v = new EditText(context); + v.setInputType(TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_EMAIL_ADDRESS); + { + LayoutParams lp = new LayoutParams(row3, col2); + lp.width = (int) v.getPaint().measureText("Frederick.W.Flintstone@bedrock.com "); + vg.addView(v, lp); + } + } + + { + TextView v = new TextView(context); + v.setText("Password:"); + vg.addView(v, new LayoutParams(row4, col1c)); + } + + { + TextView v = new EditText(context); + v.setInputType(TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_PASSWORD); + { + LayoutParams lp = new LayoutParams(row4, col2); + lp.width = (int) v.getPaint().measureText("************"); + vg.addView(v, lp); + } + } + + { + Space v = new Space(context); + { + LayoutParams lp = new LayoutParams(row5, col3); + lp.rowWeight = 1; + lp.columnWeight = 1; + vg.addView(v, lp); + } + } + + { + Button v = new Button(context); + v.setText("Manual setup"); + vg.addView(v, new LayoutParams(row6, col4)); + } + + { + Button v = new Button(context); + v.setText("Next"); + vg.addView(v, new LayoutParams(row7, col4)); + } + + return vg; + } + + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(create(getBaseContext())); + } + +}
\ No newline at end of file diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity3.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity3.java new file mode 100644 index 0000000..fc0b382 --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity3.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; + +public class Activity3 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.grid3); + } +} diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity4.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity4.java new file mode 100644 index 0000000..444f87c --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity4.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 20101 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; + +public class Activity4 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.grid4); + } +} diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity5.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity5.java new file mode 100644 index 0000000..d317526 --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity5.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; + +public class Activity5 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.grid5); + } +} diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity6.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity6.java new file mode 100644 index 0000000..9bc9f9f --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity6.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; + +public class Activity6 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.grid6); + } +} diff --git a/tests/GridLayoutTest/src/com/android/test/layout/Activity7.java b/tests/GridLayoutTest/src/com/android/test/layout/Activity7.java new file mode 100644 index 0000000..6350381 --- /dev/null +++ b/tests/GridLayoutTest/src/com/android/test/layout/Activity7.java @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2011 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.test.layout; + +import android.app.Activity; +import android.os.Bundle; + +public class Activity7 extends Activity { + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.grid7); + } +} |