Merge commit '6bbf38916957aba00e85af83923c232ccae5a59d' into donut
* commit '6bbf38916957aba00e85af83923c232ccae5a59d':
AI 147767: set 1.1 download page to include "not current" disclaimer
Merge commit '7b54237c8b662b7c1069e00d8dd6aa7e4d619e87' into donut
* commit '7b54237c8b662b7c1069e00d8dd6aa7e4d619e87':
AI 147755: Add sizes and checksums for 1.5 SDK downloadables.
Merge commit '6f1826cb0cf23e0027817f5a26cf1181f85e1085' into donut
* commit '6f1826cb0cf23e0027817f5a26cf1181f85e1085':
AI 147752: dang, there was another unclosed tag... tested it this time.
Merge commit 'a055e5ea1d87a958cc2c0ea82fe7026b205578b9' into donut
* commit 'a055e5ea1d87a958cc2c0ea82fe7026b205578b9':
AI 147742: close <code> tag and remove some bolding
Merge commit 'b867019173d20cd4fd7ee79a3ce924096e95a241' into donut
* commit 'b867019173d20cd4fd7ee79a3ce924096e95a241':
AI 147725: Some fixes for the CTS test runner. One is a
Merge commit '14533d2652ce786f1ca84af1b54adaa201455989' into donut
* commit '14533d2652ce786f1ca84af1b54adaa201455989':
AI 147720: Set default language for NL to nl.
Merge commit '864750c3ec8cc645e77e99a434dd43a5cd1dca26' into donut
* commit '864750c3ec8cc645e77e99a434dd43a5cd1dca26':
AI 147718: Created .jd doc file for the JetCreator manual. Cleaned up the content to only use HTML tags, no more ugly Word generated tags. Removed references to visio files, converted all assets to PNG and renamed them with human understandable names. Added reference to JetPlayer javadoc.
Merge commit '6edea74a4dc0f2e17d9fb59ef5e175d9cb1a8508' into donut
* commit '6edea74a4dc0f2e17d9fb59ef5e175d9cb1a8508':
AI 147711: Fix link text in highlights doc. Copy "New APIs" section to Version Notes doc.
Merge commit 'd97e8dc252b6f2f5919885ee337518e5fd5bd285' into donut
* commit 'd97e8dc252b6f2f5919885ee337518e5fd5bd285':
AI 147710: Add redirects for sdk/preview pages.
Merge commit '78b1511d96f0b2123bfadf51c5c1ccf33cdd2b3d' into donut
* commit '78b1511d96f0b2123bfadf51c5c1ccf33cdd2b3d':
AI 147541: Add cs as default language for cz.
Merge commit '620986a358c522178ddfc5c0088b2a5e1768e5ae' into donut
* commit '620986a358c522178ddfc5c0088b2a5e1768e5ae':
AI 147438: add app widget docs to dev guide
Merge commit '134e8e4fc391d4f48f89acbfda757cd61504cb46' into donut
* commit '134e8e4fc391d4f48f89acbfda757cd61504cb46':
AI 147433: Fix broken link to sdk/samples dir in the offline.html page.
* 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
The back key now dismisses the soft keyboard, and then the dialog.
The soft keyboard behavior is improved by having ACTV do the following when 'mDropdownAlwaysShowing' is true:
- touching outside of the drop down doesn't dismiss it
- touching the text field ensures the imei is brought in front of the drop down
Now that we have GPS support in the emulator and public APIs for mock providers,
the fake provider support is no longer needed.
Signed-off-by: Mike Lockwood <lockwood@android.com>
Previously we had converted application/xhtml+xml to text/html because of bad
server data. Now we need to treat xhtml as xhtml to get svg to be interpreted
correctly.
- made the helper Node and Iterator classes protected inner classes of List so they don't pollute the android namespace.
- use "int foo()" instead of "int foo(void)" which is more C++ stylish
- made distance() a template function, this way we write it once and it will work with combinations of iterator and const_iterator
- added the inline keyword on some function to make it clear to the compiler and the programmer that we want/intend these to be small inline functions
- added templated comparison operators to Iterator so it can compare iterator and const_iterator
- use size_t instead of "unsigned int" at places
- distance() should return a ptrdiff_t (it's kind of mening less here because it won't really work if the distance is < 0)
- made sure we handle conversions from iterator to const_iterator, but but fail at compile time in the other direction
- added operator->() on iterator and const_iterator
- made a bunch of private constructors explicit to avoid unwanted conversions