summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* AI 147976: Compatibility mode support. Part 2.Mitsuru Oshima2009-04-2812-50/+324
| | | | | | | | | | | | | | | | | * Introduced ApplicationScale (may not be good name. CompatibilityScale? CanvasScale? Pls let me know if you have better idea) * Changes to RootView / SurfaceView - Makes the app believe it's running in the supported density/resolution. - Makes the window manager believe it's running at the right density/resolution. * Added methods to Rect/Event for scaling up/down. Known issues: * certain kind of images (such as nine patch for buttons) seesm to be loaded not by app, thus does not take the scale into account, which, in turn, is causing layout issue. * ZoomButton in MapView is rendered in wrong place * Transparent region on Surface is not correct * Specifying different densities in one process is not working. BUG=1770627 Automated import of CL 147976
* AI 147845: Compatibility mode support. Part 1Mitsuru Oshima2009-04-277-9/+112
| | | | | | | Adding supports-density tag to manifest file/ApplicationInfo. BUG=1752478 Automated import of CL 147845
* AI 147681: Fix SearchDialog crash on missing FORMAT suggestion column.Bjorn Bringert2009-04-241-3/+6
| | | | | | | | | | | | CL 147456 introduced support for HTML formatted search suggestions. This is triggered by the value "html" in the SUGGEST_COLUMN_FORMAT column. However, the code failed to check that the SUGGEST_COLUMN_FORMAT column was present before trying to read it. This resulted in an IllegalStateException being thrown when searching with a suggestion provider that does not include the SUGGEST_COLUMN_FORMAT column. This broke search at least in the Contacts and Music apps. Automated import of CL 147681
* AI 147564: Merge back from search branch to donut. Notes:Karl Rosaen2009-04-2337-1665/+2610
| | | | | | | | | - all public apis and framework changes have been reviewed by relevant folks in our branch (e.g romainguy) - all new public apis are @hidden; they will still get reviewed by api council once we're in git - other than that, it's mostly GlobalSearch and search dialog stuff, a new apps provider, and some tweaks to the contacts provider that was reviewed by jham Automated import of CL 147564
* AI 147338: am: CL 147336 Remove stuff relating to the Maps ext library from ↵Dirk Dougherty2009-04-226-631/+110
| | | | | | | | | the docs. Leave a pointer over to code.google.com. Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147338
* AI 147334: am: CL 147332 Miscellaneous doc changes for cupcake SDKDirk Dougherty2009-04-227-661/+20
| | | | | | | Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147334
* AI 147327: am: CL 147325 update the installing and upgrading docs for cupcakeScott Main2009-04-222-120/+618
| | | | | | | Original author: smain Merged from: //branches/cupcake/... Automated import of CL 147327
* AI 147317: am: CL 147314 change carousel SDK to 1.5;Scott Main2009-04-221-4/+4
| | | | | | | | revise Google IO info Original author: smain Merged from: //branches/cupcake/... Automated import of CL 147317
* AI 147313: am: CL 147311 update eclipse docs to include necessary AVD ↵Scott Main2009-04-221-150/+350
| | | | | | | | | | procedures and discuss relevant target facilities Original author: smain Merged from: //branches/cupcake/... Automated import of CL 147313
* AI 147308: am: CL 147306 re-write the Developing in Other IDEs doc with ↵Scott Main2009-04-221-123/+364
| | | | | | | | | updated information for 1.5 Original author: smain Merged from: //branches/cupcake/... Automated import of CL 147308
* AI 147303: am: CL 147297 Update Android 1.5 SDK Download, Release Notes, ↵Dirk Dougherty2009-04-226-41/+717
| | | | | | | | | | | | | Version Notes, Highlights Please let me know if you have other "known issues", "resolved issues", or "highlights". Also, note that the installing and upgrading docs are being updated in a different CL, so the new version is not displayed on my staging server. Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147303
* AI 147294: am: CL 147290 Update Geocoder javadoc to reflect the need for a ↵Xavier Ducrohet2009-04-211-5/+11
| | | | | | | | | backend service. Original author: xav Merged from: //branches/cupcake/... Automated import of CL 147294
* AI 147253: am: CL 147250 Fix a nasty typo in the docs for ↵Jeff Hamilton2009-04-211-1/+1
| | | | | | | | | ContentResolver.update(). No code changes. Original author: jham Merged from: //branches/cupcake/... Automated import of CL 147253
* AI 147239: am: CL 147238 Update tools index, replace activitycreator with ↵Dirk Dougherty2009-04-215-67/+46
| | | | | | | | | android Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147239
* AI 147230: am: CL 147228 Add API diff report to SDK docs (API Level 2 to 3)Dirk Dougherty2009-04-21255-0/+56240
| | | | | | | Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147230
* AI 147224: am: CL 147219 update app-signing doc to include a guide to export ↵Scott Main2009-04-211-63/+126
| | | | | | | | | a signed APK from ADT Original author: smain Merged from: //branches/cupcake/... Automated import of CL 147224
* AI 147214: am: CL 147211 Update emulator doc for new usage with avds.Dirk Dougherty2009-04-211-100/+163
| | | | | | | Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147214
* AI 147168: am: CL 147163 Copy documentation for the various search-by-voice ↵Andy Stadler2009-04-212-5/+84
| | | | | | | | | | | | | flags that were already listed in attrs.xml into SearchManager.java. Add a (brief - no time for more) description about how to add search by voice to apps. JAVADOC ONLY - should be safe change for cupcake sdk. Original author: stadler Merged from: //branches/cupcake/... Automated import of CL 147168
* AI 147167: am: CL 147162 Emphasize in the javadoc that the "pkg" parameters toAndy Stadler2009-04-214-4/+29
| | | | | | | | | | | | | InstrumentationTestCase and its descendants should be the package manager package name (not the java package name, and not the test package) of the package holding the Activity under test. Added similar notations to the ApiDemos call sites. JAVADOC ONLY - should be safe change for cupcake sdk. Original author: stadler Merged from: //branches/cupcake/... Automated import of CL 147167
* AI 147083: am: CL 147081 Add document describing AVDs and usage. (doc change ↵Dirk Dougherty2009-04-211-0/+496
| | | | | | | | | only) Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147083
* AI 147054: am: CL 147053 Add -hdf primer vars for the platform and release ↵Dirk Dougherty2009-04-212-13/+20
| | | | | | | | | | ID associated with the current (most recent) SDK. Currently, the docs that are specific to each SDK release -- downloading, installing, upgrading, requirements -- are stored in a directory with release-derived name, such as "1.1_r1". This change lets documents use generic links to point into the most recent version specific docs, eg href="{@docRoot}sdk/{sdkCurrent}/installing.html" instead of href="{@docRoot}sdk/1.1_r1/installing.html". Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 147054
* AI 147035: am: CL 147032 Finalize JetPlayer javadoc.Jean-Michel Trivi2009-04-201-8/+165
| | | | | | | Original author: jmtrivi Merged from: //branches/cupcake/... Automated import of CL 147035
* AI 146938: am: CL 146937 Finalize AudioRecord javadoc.Jean-Michel Trivi2009-04-201-35/+46
| | | | | | | Original author: jmtrivi Merged from: //branches/cupcake/... Automated import of CL 146938
* AI 146934: Make TI Wifi driver choice framework-independent - part 1Dmitry Shmidt2009-04-201-8/+0
| | | | | | BUG=1786365 Automated import of CL 146934
* AI 146853: Add kernel wakelock data to batteryinfo dump.Evan Millar2009-04-184-206/+696
| | | | | | BUG=1755458 Automated import of CL 146853
* AI 146755: am: CL 146754 Fix some problems in the SoundPool docs and add ↵Dave Sparks2009-04-171-38/+95
| | | | | | | | | additional text. Original author: davidsparks Merged from: //branches/cupcake/... Automated import of CL 146755
* AI 146752: am: CL 146751 Finalize AudioTrack javadoc.Jean-Michel Trivi2009-04-171-44/+67
| | | | | | | Original author: jmtrivi Merged from: //branches/cupcake/... Automated import of CL 146752
* AI 146743: am: CL 146711 Enhancing the test runner. Now it filters ↵Urs Grob2009-04-172-3/+142
| | | | | | | | | | | BrokenTests and only executes tests annotated with SideEffect if the host is running in single test mode. Also adding some cleanup mechanism and some logcat logging about memory consumption Original author: ursg Merged from: //branches/cupcake/... Automated import of CL 146743
* AI 146668: am: CL 146667 Add advice in MediaRecorder Java docs about using ↵Dave Sparks2009-04-161-0/+4
| | | | | | | | | MPEG-4 container format Original author: davidsparks Merged from: //branches/cupcake/... Automated import of CL 146668
* AI 146655: am: CL 146654 Add java docs for SoundPoolDave Sparks2009-04-161-1/+189
| | | | | | | Original author: davidsparks Merged from: //branches/cupcake/... Automated import of CL 146655
* AI 146613: Move Recognition service declarations to ↵Brandon Ballinger2009-04-164-0/+183
| | | | | | frameworks/base/core/java/android/speech. Hide them from public API by default (no changes to current.xml). Automated import of CL 146613
* AI 146610: am: CL 146609 updates to the manifest docs for cupcake: Add ↵Dirk Dougherty2009-04-1622-51/+467
| | | | | | | | | "since" notations for elements and some attributes. Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 146610
* AI 146602: am: CL 146601 Update media formats appendix for cupcakeDirk Dougherty2009-04-162-13/+20
| | | | | | | Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 146602
* AI 146485: am: CL 146411 Fix BridgeCanvas#drawRoundRectXavier Ducrohet2009-04-161-2/+2
| | | | | | | Original author: xav Merged from: //branches/cupcake/... Automated import of CL 146485
* AI 146345: am: CL 146341 g4 integrate -t -i -b platform-1_0-to-cupcake ↵Dirk Dougherty2009-04-151-9/+18
| | | | | | | | | @146018,146018 (doc change) Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 146345
* AI 146343: am: CL 146340 Integrate updated SDK Terms and Conditions documentDirk Dougherty2009-04-152-5/+5
| | | | | | | Original author: ddougherty Merged from: //branches/cupcake/... Automated import of CL 146343
* AI 146255: am: CL 146254 clarification for the minSdkVersion attribute;Scott Main2009-04-143-23/+33
| | | | | | | | | | added more information to the <uses-sdk> reference, added a link to it from the <manifes> reference, and revised some misleading information in the android 1.1 version notes Original author: smain Merged from: //branches/cupcake/... Automated import of CL 146255
* AI 146251: am: CL 146242 fix the package namespace in the examples;Scott Main2009-04-142-477/+4
| | | | | | | | delete the old hello-android file Original author: smain Merged from: //branches/cupcake/... Automated import of CL 146251
* AI 146246: am: CL 146225 Work around initialization issue with ↵Guang Zhu2009-04-141-1/+1
| | | | | | | | | InstrumentationTest Runner. super.onCreate needs to be called as last statement in subclass' onCreate to avoid starting test case too early. Original author: guangzhu Merged from: //branches/cupcake/... Automated import of CL 146246
* AI 146145: am: CL 146144 Set default map location for Ireland and South AfricaRamanan Rajeswaran2009-04-142-0/+64
| | | | | | | Original author: ramanan Merged from: //branches/cupcake/... Automated import of CL 146145
* AI 146129: am: CL 146127 Increase zoom level for NZ default maps locationRamanan Rajeswaran2009-04-141-3/+3
| | | | | | | Original author: ramanan Merged from: //branches/cupcake/... Automated import of CL 146129
* AI 146124: am: CL 146123 Change Belfast to DublinRamanan Rajeswaran2009-04-141-1/+1
| | | | | | | Original author: ramanan Merged from: //branches/cupcake/... Automated import of CL 146124
* AI 146029: am: CL 146028 update hello world tutorial for cupcake, including ↵Scott Main2009-04-135-152/+196
| | | | | | | | | various other edits. Original author: smain Merged from: //branches/cupcake/... Automated import of CL 146029
* AI 145995: am: CL 145993 Fix Phone-oriented default-locale selection.Robert Greenwalt2009-04-131-6/+6
| | | | | | | | | When several locales for a given language are available we were always selecting the first. Original author: rgreenwalt Merged from: //branches/cupcake/... Automated import of CL 145995
* AI 145981: am: CL 145892 Add Ireland, Switzerland, New Zealand, South Africa ↵Ramanan Rajeswaran2009-04-131-5/+4
| | | | | | | | | to MccTable Original author: ramanan Merged from: //branches/cupcake/... Automated import of CL 145981
* AI 145980: am: CL 145881 Adding on to CL 145383, unhiding some additional ↵Eric Shienbrood2009-04-134-35/+147
| | | | | | | | | | | | methods and constants that ought to be exposed. Hid and deprecated the single-arg public constructor for NetworkInfo, and modified a CTS test that was testing it. Ran the android.net test package to make sure it still works. Original author: ers Merged from: //branches/cupcake/... Automated import of CL 145980
* AI 145971: am: CL 145757 Suppress the flaky testsYu Shan Emily Lau2009-04-131-3/+4
| | | | | | | Original author: yslau Merged from: //branches/cupcake/... Automated import of CL 145971
* AI 145970: am: CL 145743 Excise the "de" locale out of ↵Dan Bornstein2009-04-131-4/+3
| | | | | | | | | | testResourceBundles(), leaving a TODO and long comment about the situation. Original author: danfuzz Merged from: //branches/cupcake/... Automated import of CL 145970
* AI 145971: am: CL 145757 Suppress the flaky testsYu Shan Emily Lau2009-04-131-3/+4
| | | | | | | Original author: yslau Merged from: //branches/cupcake/... Automated import of CL 145971
* AI 145970: am: CL 145743 Excise the "de" locale out of ↵Dan Bornstein2009-04-131-1/+44
| | | | | | | | | | testResourceBundles(), leaving a TODO and long comment about the situation. Original author: danfuzz Merged from: //branches/cupcake/... Automated import of CL 145970