Teng-Hui Zhu
1ef63fd2ed
Merge "Add the loading progress UI when buffering"
2011-03-29 16:58:19 -07:00
Christopher Tate
3d4bf17f49
Add view/drawable states for drag-accepting / drag-hovered
...
Added new drag_can_accept and drag_hovered XML attributes and the View
logic to support them. Drawable states are now refreshed automatically
when a drag starts/ends and when a drag crosses the boundary of a
participating view.
Change-Id: I25f8ee02c83b3fa4f27201997d7eabf4be653fd8
2011-03-29 15:27:58 -07:00
Teng-Hui Zhu
c0fccd1292
Add the loading progress UI when buffering
...
bug:4187252
Change-Id: I0f9f2c659303b391b1be896b9a30cc6bf7455da5
2011-03-29 15:07:35 -07:00
Jeff Sharkey
67bcd82b40
Merge "Support Ctrl-based EditText movement."
2011-03-28 19:57:10 -07:00
satok
1be6cce701
Merge "Removed APIs for setCorrectionSpan from InputConnection"
2011-03-25 15:22:15 -07:00
satok
e3797a15fb
Removed APIs for setCorrectionSpan from InputConnection
...
("setCorrectionSpan" was added in Id3abc9ea4d11753cd )
Also..
- Added a class java doc for CorrectionSpan
- Removed FLAG_DEFAULT
- Changed the return type of getSuggestions from Array<CharSequence> to String[]
Change-Id: If5eb091e307a7a40c5b4a70ec1fe6059ecd9fb2d
2011-03-26 07:20:34 +09:00
Adam Powell
1453f0926f
am 7dfc6a9e: am c8c78eed: am baa3380d: Fix bug 4170809 - Pages with flash lose touch events
...
* commit '7dfc6a9e322e9c0367a6372b25694d926d79a618':
Fix bug 4170809 - Pages with flash lose touch events
2011-03-25 14:54:10 -07:00
Adam Powell
7dfc6a9e32
am c8c78eed: am baa3380d: Fix bug 4170809 - Pages with flash lose touch events
...
* commit 'c8c78eed52148441a4a549a9a19914bbbde6ad17':
Fix bug 4170809 - Pages with flash lose touch events
2011-03-25 14:49:11 -07:00
Adam Powell
c8c78eed52
am baa3380d: Fix bug 4170809 - Pages with flash lose touch events
...
* commit 'baa3380d74928baf6a5685c54c719af37171a625':
Fix bug 4170809 - Pages with flash lose touch events
2011-03-25 14:45:06 -07:00
satok
c50232d517
Add hashCode to InputMethodInfo
...
The uniqueness of InputMethodInfo was guaranteed by mId (like InputMethodInfo#equals), but the hashCode was not implemented in the same way.
This change fixes a problem happening when the user gets the hashCode of InputMethodInfo obtained through IPC.
Change-Id: Ib876c5cb0d778481100597ec31202f94fb7b8f37
2011-03-26 06:12:58 +09:00
Adam Powell
baa3380d74
Fix bug 4170809 - Pages with flash lose touch events
...
Fix WebView touch cancel behavior when we time out waiting for a
response from webkit.
Change-Id: I0aeeea64b156e204dbe2dda913a42df28704ed16
2011-03-25 13:58:19 -07:00
Gilles Debunne
8da36372a3
Merge "Fix a leak in TextView around ViewTreeObserver"
2011-03-25 11:57:17 -07:00
Adam Cohen
ba08462ebe
Merge "Modifying RemoteViewsFactory interface"
2011-03-25 11:19:34 -07:00
Gilles Debunne
6f72cf8057
Fix a leak in TextView around ViewTreeObserver
...
Port of AOSP change 21909 into master.
Change-Id: I5a3490a6e0151867840507d0137ee811ea2fb139
2011-03-25 10:49:44 -07:00
Jesse Wilson
1e0efd157b
Merge "Fix MemoryFile's output stream to advance."
2011-03-25 08:47:53 -07:00
Adam Cohen
2625feae79
Modifying RemoteViewsFactory interface
...
-made onDestroy() one way
-moved uncaught exception handling to the application process
Change-Id: I958571a34eaa48b27e441e3a117c109fb2d2c644
2011-03-24 19:50:22 -07:00
Jesse Wilson
112d339673
Fix MemoryFile's output stream to advance.
...
Previously it was not useful.
Change-Id: I0bcc06b65bab33a38a0b0148c020509076a51b1c
http://code.google.com/p/android/issues/detail?id=11415
2011-03-24 18:18:19 -07:00
Jeff Brown
dff626c56a
Merge "Added a hovered state for drawables."
2011-03-24 16:42:08 -07:00
PY Laligand
c33d8d49e4
Added a hovered state for drawables.
...
Change-Id: I2b12c8593e04e37c8eb748946ca6d4d7a61de36a
2011-03-24 16:14:08 -07:00
Romain Guy
ad575f4dda
Merge "When deleting a path, remove it from the path cache. Bug #4170585 "
2011-03-24 16:05:13 -07:00
Romain Guy
1af23a32d8
When deleting a path, remove it from the path cache.
...
Bug #4170585
Change-Id: I6be4d251ceb908c89afe49c2ff85c05f36c73b70
2011-03-24 16:03:55 -07:00
Michael Jurka
9c78930046
Merge "Fixing invalidate problems in software rendered mode"
2011-03-24 16:00:50 -07:00
Michael Jurka
d0872bd38a
Fixing invalidate problems in software rendered mode
2011-03-24 15:45:27 -07:00
Jeff Brown
b7c25ce3ae
Merge "Add MotionEvent.HOVER_ENTER and HOVER_EXIT."
2011-03-24 15:38:04 -07:00
Jeff Brown
a032cc0086
Add MotionEvent.HOVER_ENTER and HOVER_EXIT.
...
The input dispatcher sends a HOVER_ENTER to a window before dispatching
it any HOVER_MOVE events. For compatibility reasons, the window will
*also* receive the HOVER_MOVE. When the pointer moves into a different
window or the pointer goes down or when events are canceled for some reason,
the input dispatcher sends a HOVER_EXIT to the previously hovered window.
The view hierarchy behavior is similar. All views under the pointer
receive onHoverEvent with HOVER_ENTER followed by any number of HOVER_MOVE
events. When the pointer leaves a view, the view receives HOVER_EXIT.
Similarly, if a parent view decides to capture hover by returning true
from onHoverEvent, the hovered descendants will receive HOVER_EXIT.
The default behavior of onHoverEvent is to update the view's hovered
state by calling setHovered(true/false). Views can query their current
hovered state using isHovered().
For testing purposes, the hovered state is mapped to the pressed
drawable state. This will change in a subsequent commit with the
introduction of a new hovered drawable state.
Change-Id: Ib76a7a90236c8f2c7336e55773acade6346cacbe
2011-03-24 15:37:04 -07:00
Eino-Ville Talvala
a5d42c8578
Merge "NEW_API: Add getTimestamp() to SurfaceTexture."
2011-03-24 15:36:56 -07:00
Romain Guy
c5a43a249b
Avoid NPE in postInvalidate().
...
Bug #4048131
Change-Id: I020400fc97015240924461674ca7bf8077059152
2011-03-24 13:28:56 -07:00
Romain Guy
cf38b0cea6
Merge "Correctly check bottom padding in setPadding()."
2011-03-24 12:04:20 -07:00
Romain Guy
13f35f3ce6
Correctly check bottom padding in setPadding().
...
Change-Id: Ie8099d37ad865acc559c4a4d34eb84960a1a19f3
2011-03-24 12:03:17 -07:00
Jesse Wilson
ff5569948f
Don't link to Harmony implementation details in public APIs.
...
Change-Id: I8a157d64d87443b512a5b958d52a0769ef01ef7b
2011-03-24 10:36:52 -07:00
Romain Guy
c78504dca6
Merge "Use the correct API to query system properties."
2011-03-23 19:57:23 -07:00
Romain Guy
aaceeb0c5b
Use the correct API to query system properties.
...
Change-Id: Ie120dee0e24959d4db3fdb0100b6d8fe7fe46cdb
2011-03-23 19:56:13 -07:00
Teng-Hui Zhu
d9f68bc9e0
am 842b914f: am a7605d3b: am 2d09b855: Merge "When the video is not on the front, it should be paused" into honeycomb-mr1
...
* commit '842b914f26633aa94f3c63fbfc6a6b521904e1b8':
When the video is not on the front, it should be paused
2011-03-23 17:38:28 -07:00
Teng-Hui Zhu
842b914f26
am a7605d3b: am 2d09b855: Merge "When the video is not on the front, it should be paused" into honeycomb-mr1
...
* commit 'a7605d3b2ec9526fc369e5e0a1a37880db2c0694':
When the video is not on the front, it should be paused
2011-03-23 17:36:03 -07:00
Teng-Hui Zhu
a7605d3b2e
am 2d09b855: Merge "When the video is not on the front, it should be paused" into honeycomb-mr1
...
* commit '2d09b855d5c0749ab845d3f2775125fea294f07c':
When the video is not on the front, it should be paused
2011-03-23 17:34:15 -07:00
Romain Guy
6325b622ad
Merge "Apply color filters to bitmaps."
2011-03-23 16:56:18 -07:00
Teng-Hui Zhu
1e26d82ffa
When the video is not on the front, it should be paused
...
bug:4165855
Change-Id: Icbdab81fe5beb8642841b16773b0e5350b4221cf
2011-03-23 16:56:12 -07:00
Romain Guy
56215274f2
Apply color filters to bitmaps.
...
Change-Id: I36354a6a2d330b2e61ed2af12b6701b151880288
2011-03-23 16:55:38 -07:00
Teng-Hui Zhu
d6f8f798f2
am fee1d146: am 50373509: am efb8eda4: Merge "Make sure the full screen playing continue when timeout" into honeycomb-mr1
...
* commit 'fee1d146a3285e887712150496bbf002f4945079':
Make sure the full screen playing continue when timeout
2011-03-23 16:09:46 -07:00
Teng-Hui Zhu
fee1d146a3
am 50373509: am efb8eda4: Merge "Make sure the full screen playing continue when timeout" into honeycomb-mr1
...
* commit '503735099d51e9701be4737dff4e74b35361d371':
Make sure the full screen playing continue when timeout
2011-03-23 16:07:57 -07:00
Teng-Hui Zhu
503735099d
am efb8eda4: Merge "Make sure the full screen playing continue when timeout" into honeycomb-mr1
...
* commit 'efb8eda41a2dce03db0984c490c16f6a32867ded':
Make sure the full screen playing continue when timeout
2011-03-23 16:06:10 -07:00
Teng-Hui Zhu
efb8eda41a
Merge "Make sure the full screen playing continue when timeout" into honeycomb-mr1
2011-03-23 16:03:04 -07:00
Teng-Hui Zhu
2deec6651c
Make sure the full screen playing continue when timeout
...
bug:4165804
Change-Id: I5e0f4bdaecce36d074941ae6631b211227c13fcb
2011-03-23 15:29:22 -07:00
Scott Main
f0e8f367ca
am 8346a6c2: am ee7cfaf2: am 18cd686f: am ef6b305b: docs: fix markup error
...
* commit '8346a6c27311afdce4755807a23a8edcf1f52f66':
docs: fix markup error
2011-03-23 14:49:38 -07:00
Scott Main
8346a6c273
am ee7cfaf2: am 18cd686f: am ef6b305b: docs: fix markup error
...
* commit 'ee7cfaf28969998ca15800f99bcdab2596051865':
docs: fix markup error
2011-03-23 14:47:34 -07:00
Scott Main
ee7cfaf289
am 18cd686f: am ef6b305b: docs: fix markup error
...
* commit '18cd686fc828c9c75596de1494ecaa5467fcc195':
docs: fix markup error
2011-03-23 14:43:35 -07:00
Scott Main
18cd686fc8
am ef6b305b: docs: fix markup error
...
* commit 'ef6b305b93009b60ad7c6ddbd200d1b5c554963f':
docs: fix markup error
2011-03-23 14:32:44 -07:00
Scott Main
ef6b305b93
docs: fix markup error
...
Change-Id: I59e379a7a36c4184862095442c53a6b9496d856e
2011-03-23 14:23:02 -07:00
repo sync
adbf9d8585
am d5ba9c22: Merge "resolved conflicts for merge of 17f95e92 to honeycomb-plus-aosp" into honeycomb-plus-aosp
...
* commit 'd5ba9c22236346578ce34e3e8b475b8cad9773dd':
remove the code that clears the passwords when the sim is replaced with a different one.
2011-03-23 13:49:35 -07:00
repo sync
d5ba9c2223
Merge "resolved conflicts for merge of 17f95e92 to honeycomb-plus-aosp" into honeycomb-plus-aosp
2011-03-23 13:46:32 -07:00