diff options
author | David A. Madore <david+git@madore.org> | 2012-03-16 16:38:12 +0100 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2012-03-16 16:52:05 +0100 |
commit | 29b7e615adf0aaa2a96d38f78f5a30e1319063f4 (patch) | |
tree | 151fd20e98128968465c2b13f914a975403ceec5 | |
parent | 5ae584e2502efe74c53ee4f9c8d61872a9c89c36 (diff) | |
download | UnicodeMap-29b7e615adf0aaa2a96d38f78f5a30e1319063f4.tar.gz UnicodeMap-29b7e615adf0aaa2a96d38f78f5a30e1319063f4.tar.bz2 UnicodeMap-29b7e615adf0aaa2a96d38f78f5a30e1319063f4.zip |
Declare app to be content with any screen size whatsoever.
-rw-r--r-- | AndroidManifest.xml | 6 | ||||
-rw-r--r-- | TODO | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index fd06285..fab46c6 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -4,6 +4,12 @@ android:versionCode="3" android:versionName="0.0.3"> <uses-sdk android:minSdkVersion="3" /> + <supports-screens android:resizeable="true" + android:smallScreens="true" + android:normalScreens="true" + android:largeScreens="true" + android:xlargeScreens="true" + android:anyDensity="true" /> <application android:label="@string/app_name" android:icon="@drawable/icon"> <activity android:name=".UnicodeMapActivity"> @@ -9,7 +9,3 @@ * Fix the bug that cancelling the textFilter returns to an incorrect position (hard: this seems to be a bug in the way ArrayAdapter and ListView talk to each other). - -* Declare support for QVGA (see <URL: - http://developer.android.com/guide/practices/screens_support.html - >). |