1. 841f13c * Reverted the change in PackageParser that I checked by accident by Mitsuru Oshima · 15 years ago
  2. 34bf2ee * scale surface view's canvas by Mitsuru Oshima · 15 years ago
  3. 5a2b91d * Use Fede In/Out animation if one of opening/closing apps is in compatibility mode. by Mitsuru Oshima · 15 years ago
  4. b5c735d Merge change 7106 into donut by Android (Google) Code Review · 15 years ago
  5. e8b1652 Fixes #1977685. Prevent crash when the soft keyboard is brought up. by Romain Guy · 15 years ago
  6. ddd1253 Return adjusted display for WindowManager.getDefaultDisplay() by Mitsuru Oshima · 15 years ago
  7. 1ecf5d2 Re-implementation of large screen support using window manager. by Mitsuru Oshima · 15 years ago
  8. 1e09597 Fixes #1963217. Increases the invalidate region in compatibility mode. by Romain Guy · 15 years ago
  9. 870e09f Fixes #1963229. Introduces Context#isRestricted(). by Romain Guy · 15 years ago
  10. 4296fc4 Fixes #1444844. Set a maximum fling velocity in scrollable views. by Romain Guy · 15 years ago
  11. 22e8cbc Merge change 5656 into donut by Android (Google) Code Review · 15 years ago
  12. e112322 Fixes #1949502. Prevents an NPE in View.buildDrawingCache(). by Romain Guy · 15 years ago
  13. 86d56cc Generate key events for actions sent to generic input connections. by Dianne Hackborn · 15 years ago
  14. fbd8f69 Fixes #1946141. Introduce new caching API to control scaling. by Romain Guy · 15 years ago
  15. 64f5934 * new screen resolution support impl. by Mitsuru Oshima · 15 years ago
  16. 61ab270 Add missing 'break's in switch statement, fixing bug 1876430 by Karl Rosaen · 15 years ago
  17. a465a17 Fix bugs 1827027, 1808979, 1820700. by Dianne Hackborn · 15 years ago
  18. 7299807 Fixes #1933585. Don't dismiss ACTV's drop down when it's set to alwaysVisible. by Romain Guy · 15 years ago
  19. 779398e Fixes a potential NPE in View. by Romain Guy · 15 years ago
  20. cafdea6 Fixes #1914574. An NPE could be causes in lists by ViewGroup.dispatchDraw(). by Romain Guy · 15 years ago
  21. 8506ab4 Fixes #1886237. Views drawing cache was not generated properly. by Romain Guy · 15 years ago
  22. e5fb328 resolution support fix/improvement by Mitsuru Oshima · 15 years ago
  23. a1f3e4a Fix int to string mapping of exported properties. The value generated by the by Romain Guy · 15 years ago
  24. 9189cab * Moved supports-density tag under manifest by Mitsuru Oshima · 15 years ago
  25. ec25df9 Fix drawing bug: opaque invalidations should not be taken into account when the invalidated view is animating. Also add the ability to disable the auto-fade on the GestureOverlayView. by Romain Guy · 15 years ago
  26. d6a463a Add a new API to ListView: setGestures(int). This allows developers to enable gestures to jump inside the list or filter it. This change also introduces a new XML attribute to control this API. It also adds the ability to theme the GestureOverlayView from the gestures library. Finally, this adds a new VERSION header to the binary format used to store the letters for the recognizer. by Romain Guy · 15 years ago
  27. c4d5d02 Add new window manager type for a hacking second-level media surface. by Dianne Hackborn · 15 years ago
  28. d1a9337 Add a new window flag to display a window when keyguard is shown. by Suchi Amalapurapu · 15 years ago
  29. 8f1344f5 Fixes #1855461, #1857290 and #1857365. Certain scrollbar styles make an opaque view not be opaque. ListView and View now account for this when indicating whether they are opaque or not. by Romain Guy · 15 years ago
  30. 75986cf Accessibility feature - framework changes (replacing 698, 699, 700, 701 and merging with the latest Donut) by svetoslavganov · 15 years ago
  31. 5bcdff4 Fixes #1846038. The dirty region can sometimes be modified by SurfaceFlinger. When this happens, force the view hierarchy to ignore the dirty flags. by Romain Guy · 15 years ago
  32. d1f7b3a Merge change 1704 into donut by Android (Google) Code Review · 15 years ago
  33. 809a7f6 New feature to track down #1846038. Adds the ability to export flags encoded in int values so as to make them human readable in HierarchyViewer. by Romain Guy · 15 years ago
  34. 3d91492 fix window layout problem in ViewRoot by Mitsuru Oshima · 15 years ago
  35. 13922e0 Fixes #1836075. Adds consistency checks for the View hierarchy. To enable them, you need a debug build and ViewDebug.sConsistencyCheckEnabled set to true in debug.prop. This change also lets you easily enable drawing and layout profiling in ViewRoot by setting ViewRoot.sProfileDrawing, ViewRoot.sProfileLayout and ViewRoot.sShowFps in debug.prop with a debug build. by Romain Guy · 15 years ago
  36. c5b0e6e don't scale trackball event by Mitsuru Oshima · 15 years ago
  37. 6347c32 Merge change 1436 into donut by Android (Google) Code Review · 15 years ago
  38. 001a6e52 Density Compatibility mode for SurfaceView by Mitsuru Oshima · 15 years ago
  39. 807f23b Merge change 1057 into donut by Android (Google) Code Review · 15 years ago
  40. b10f138 * Add regoin scaling for transparent support by Mitsuru Oshima · 15 years ago
  41. 83b2107 Fixes #1846038. DrawableContainer was wrongly returning its opacity by ignoring the visibility of the currently selected layer. This change simply reports a TRANSPARENT opacity if there is no currently selected layer of if the selected layer is not visible. Otherwise it reports the opacity computed by the state class. by Romain Guy · 15 years ago
  42. 7ed6acd Remove useless logging on every draw. by Romain Guy · 15 years ago
  43. 24443ea Fixes #1596240. Optimize invalidate/draw passes by marking opaque views and avoiding drawing them. Whenever a View requests an invalidate its parent check whether the view is opaque or not. When the view is not opaque, the framework behaves as it used to. However, when a view is opaque, the parent marks itself as being dirty because of an opaque view. Its parent then does the same, and so on. When the framework then starts drawing the views, it does not draw views marked as dirty opaque. If a view is dirty opaque and receives an invalidate request from a non-opaque view, it then clears the dirty opaque flag and behaves as before. by Romain Guy · 15 years ago
  44. d4cc32c don't use modulo by Mitsuru Oshima · 15 years ago
  45. d90a331 Add new setTag(int, Object) API to allow applications to specify several tags. by Romain Guy · 15 years ago
  46. 9a81736 Add the ability to specify the onClick handler with XML. The new android:onClick attribute defines the name of the method in the Activity to invoke when the button is clicked. The method has to be public and get one View parameter. by Romain Guy · 15 years ago
  47. a2431d0 Fixes #1712631. Whenever a View loses focus/selection, reset its pressed state. by Romain Guy · 15 years ago
  48. d4ed049 Merge branch 'readonly-p4-donut' into donut by Mitsuru Oshima · 15 years ago
  49. dffbb4d AI 148024: fix NPE when there is no history by Mitsuru Oshima · 15 years ago
  50. 13735a2 Merge branch 'readonly-p4-donut' into donut by Mitsuru Oshima · 15 years ago
  51. 8169dae AI 147976: Compatibility mode support. Part 2. by Mitsuru Oshima · 15 years ago
  52. 257eef3 Merge branch 'readonly-p4-donut' into donut by Mitsuru Oshima · 15 years ago
  53. 8d11267 AI 147845: Compatibility mode support. Part 1 by Mitsuru Oshima · 15 years ago
  54. 1d442e0 More optimization of dumpsys output. by Dianne Hackborn · 15 years ago
  55. f8a7cea AI 145778: Manual merge changes 145382-145384 from cupcake. by Andy Stadler · 15 years ago
  56. 2e9bbce AI 144013: Rename PoolFactory to Pools, to follow the java.util convention (Collections, Arrays.) by Romain Guy · 15 years ago
  57. 958b9ad AI 143899: am: CL 143896 Fix issue #1748954 and #1737952: by Dianne Hackborn · 15 years ago
  58. d928d68 AI 143890: Fixes #1749387. Improve the pooling of the VelocityTracker class. This introduces a new, hidden, API for pooling objects easily. by Romain Guy · 15 years ago
  59. fb43fea6 AI 143815: am: CL 143758 Fixes #1749387. When a client of VelocityTracker obtains an instance from the pool, actually remove the object from the pool. Otherwise, several clients can share the same VelocityTracker which can lead to really weird side effects (including concurrency and UI issues.) by Romain Guy · 15 years ago
  60. 66b8ec9 AI 143171: am: CL 142873 fix [1732012] Only show screen rotation animation when triggered by sensor by Mathias Agopian · 15 years ago
  61. 1e880db AI 143169: am: CL 142870 Fix issue #1724917 (Applications (browser, maps, gmail) fail to retain their landscape state after coming out of sleep mode). We now rely on the listeners last known orientation, and make sure to clear it when enabling/disabling. by Dianne Hackborn · 15 years ago
  62. 3b840af AI 143162: am: CL 142858 Fix framework orientation issues by Suchi Amalapurapu · 15 years ago
  63. 8f2d94f Automated import from //branches/donutburger/...@142820,142820 by Romain Guy · 15 years ago
  64. 986003d Automated import from //branches/donutburger/...@142790,142790 by Romain Guy · 15 years ago
  65. 97d00b3 Automated import from //branches/donutburger/...@142465,142465 by Romain Guy · 15 years ago
  66. 543d69d Automated import from //branches/donutburger/...@142291,142291 by Suchi Amalapurapu · 15 years ago
  67. bb93d55 Automated import from //branches/donutburger/...@141885,141885 by Romain Guy · 15 years ago
  68. cf84383 Automated import from //branches/donutburger/...@141042,141042 by Dianne Hackborn · 15 years ago
  69. 1bf5e22 Automated import from //branches/donutburger/...@141001,141001 by Dianne Hackborn · 15 years ago
  70. 1059253 auto import from //branches/cupcake_rel/...@140373 by The Android Open Source Project · 15 years ago
  71. ba87e3e auto import from //branches/cupcake_rel/...@138607 by The Android Open Source Project · 15 years ago
  72. c39a6e0 auto import from //branches/cupcake/...@137873 by The Android Open Source Project · 15 years ago
  73. b2a3dd8 auto import from //branches/cupcake/...@137197 by The Android Open Source Project · 15 years ago
  74. f5b4b98 auto import from //depot/cupcake/@136745 by The Android Open Source Project · 15 years ago
  75. 4df2423 auto import from //depot/cupcake/@136594 by The Android Open Source Project · 15 years ago
  76. 41df385 auto import from //depot/cupcake/@135859 by The Android Open Source Project · 15 years ago
  77. bdbdc4f auto import from //depot/cupcake/@135856 by The Android Open Source Project · 15 years ago
  78. 9066cfe auto import from //depot/cupcake/@135843 by The Android Open Source Project · 15 years ago
  79. d83a98f auto import from //depot/cupcake/@135843 by The Android Open Source Project · 15 years ago
  80. 076357b auto import from //depot/cupcake/@132589 by The Android Open Source Project · 15 years ago
  81. 3dec7d5 auto import from //depot/cupcake/@137055 by The Android Open Source Project · 15 years ago
  82. 15ab3ea auto import from //branches/cupcake/...@132569 by The Android Open Source Project · 16 years ago
  83. 3001a03 auto import from //branches/cupcake/...@132276 by The Android Open Source Project · 16 years ago
  84. da996f3 auto import from //branches/cupcake/...@131421 by The Android Open Source Project · 16 years ago
  85. d24b818 auto import from //branches/cupcake/...@130745 by The Android Open Source Project · 16 years ago
  86. f1e484a auto import from //branches/cupcake/...@127436 by The Android Open Source Project · 16 years ago
  87. 22f7dfd auto import from //branches/cupcake/...@127101 by The Android Open Source Project · 16 years ago
  88. 9266c55 auto import from //branches/cupcake/...@126645 by The Android Open Source Project · 16 years ago
  89. b798689 auto import from //branches/cupcake/...@125939 by The Android Open Source Project · 16 years ago
  90. f013e1a Code drop from //branches/cupcake/...@124589 by The Android Open Source Project · 16 years ago
  91. 54b6cfa Initial Contribution by The Android Open Source Project · 16 years ago