summaryrefslogtreecommitdiff
path: root/tests/GridLayoutTest/AndroidManifest.xml
diff options
context:
space:
mode:
author Philip Milne <pmilne@google.com> 2011-05-27 18:38:01 -0700
committer Philip Milne <pmilne@google.com> 2011-06-03 13:22:52 -0700
commitaa616f31fe7c0c8e3657bb9a5889ec5e56ee5232 (patch)
tree7ed5a6e67f38bf2bd7264417a41508d5ca23dca9 /tests/GridLayoutTest/AndroidManifest.xml
parentb2450ce105086d1ac82d273a5292d9581c6ddec4 (diff)
Response to code review for GridLayout:
. Fixed spelling. . Added comments on internal methods. . Adopted the suggested internal name changes to improve clarity. . Added UNDEFINED constant to public API to avoid making reference to Integer.MAX_VALUE in docs. . Added final everywhere, then removed it. . Make the Interval class package private so that it can be put somewhere more general later. . Tidy code, removing maximize flag throughout. . Remove last of allocations taking place during layout. . Implement measureChild() etc. . Added LinearLayout alignment compatibility mode, and made it the default. Change-Id: I6a4ffa022d97d68138d1903d3830a20278815435 https://android-git.corp.google.com/g/#change,109891
Diffstat (limited to 'tests/GridLayoutTest/AndroidManifest.xml')
-rw-r--r--tests/GridLayoutTest/AndroidManifest.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/GridLayoutTest/AndroidManifest.xml b/tests/GridLayoutTest/AndroidManifest.xml
index 53ca4ce6aa44..1b72357cb90e 100644
--- a/tests/GridLayoutTest/AndroidManifest.xml
+++ b/tests/GridLayoutTest/AndroidManifest.xml
@@ -76,6 +76,27 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
+
+ <activity android:name="AlignmentTest" android:label="AlignmentTest">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
+
+ <activity android:name="LinearLayoutTest" android:label="LinearLayoutTest">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
+
+ <activity android:name="GridLayoutTest" android:label="GridLayoutTest">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
</application>