Commit Graph

38938 Commits

Author SHA1 Message Date
Chet Haase
7f1492e6a8 am 7bbca42d: am 323aae7c: am 1d1aaccb: Fix corner case of RelativeLayout with pinned edges
* commit '7bbca42d359e3f747f934df9fe67e2f8b4ce2175':
  Fix corner case of RelativeLayout with pinned edges
2014-07-24 23:59:56 +00:00
Behdad Esfahbod
c779ad41c0 am 0a8256a5: am 0249bfc1: am ed160c28: Merge "Add letter-spacing to Paint and TextView" into lmp-dev
* commit '0a8256a58909df84920c0e37c6b5af681ff74a12':
  Add letter-spacing to Paint and TextView
2014-07-24 23:51:26 +00:00
Selim Gurun
d4ed875df7 am 2bb2cf49: am bc19d47a: am 773433af: Merge "Address API review" into lmp-dev
* commit '2bb2cf49ea199816a51bbfb92880b8d16d01ff19':
  Address API review
2014-07-24 23:51:17 +00:00
Robert Greenwalt
e8ce885918 am f70323fe: am 142fc0ca: am 457a09d5: Merge "Fix DUN-based tethering." into lmp-dev
* commit 'f70323feeb34650e033ae9e19bdd5fb6f2f100b4':
  Fix DUN-based tethering.
2014-07-24 23:51:04 +00:00
George Mount
cba6c2adee am d8588268: am 610ac231: am fc687570: Merge "Fix no transition when only shared element exists." into lmp-dev
* commit 'd8588268b015066cddb01ddb8214dbb54a9ecac2':
  Fix no transition when only shared element exists.
2014-07-24 23:50:51 +00:00
Adam Lesinski
ec1fb4184e am eebc0d09: am 1038bf1d: am 94499248: Merge "Add <feature-group> tag and change aapt badging" into lmp-dev
* commit 'eebc0d090d36f8d00b841faea1bb75444963272a':
  Add <feature-group> tag and change aapt badging
2014-07-24 23:49:51 +00:00
Prerepa Viswanadham
d7c4287a80 am 903d6837: am 03f305a0: am 6565c129: cleanup : delete BLE advertising related hidden state references in Bluetooth Adapter
* commit '903d683778066725cdf442bebf63d50dafbdc8d5':
  cleanup : delete BLE advertising related hidden state references in Bluetooth Adapter
2014-07-24 23:49:44 +00:00
Svetoslav
7345743012 am 7e2c80dd: am 56c28a4b: am fc7c8bee: Updated accessibility nodes not properly cached.
* commit '7e2c80ddf1fb694c7b0b6a638ae2c779f7d2a835':
  Updated accessibility nodes not properly cached.
2014-07-24 23:49:39 +00:00
Wei Wang
93474962e2 am 87fa9a5d: am fa5f8b4f: am c20ddd45: Merge "Move AdvertiseData length check to BluetoothAdvertiser." into lmp-dev
* commit '87fa9a5d71fbe686d51d294ac15fb79408a29e08':
  Move AdvertiseData length check to BluetoothAdvertiser.
2014-07-24 23:49:25 +00:00
Hector Dearman
28f4c20363 am 017d651c: am fb8f0643: am aa2a5911: Merge "Update CookieManager API for Council review." into lmp-dev
* commit '017d651cdd6509676ee88d960adc3415d69bba3c':
  Update CookieManager API for Council review.
2014-07-24 23:49:21 +00:00
Ruben Brunk
b86878210c am 546a393f: am e5b7dc07: am 70279653: camera2: Move noise model to dynamic metadata.
* commit '546a393fbe307f4e3244e9e37f36e3be2cd1d9ad':
  camera2: Move noise model to dynamic metadata.
2014-07-24 23:49:13 +00:00
Yorke Lee
77e56a1152 am a8f55d15: am 5a9a76b5: am 9abe5673: Merge "Add Calls.TRANSCRIPTION to CallLog (2/2)" into lmp-dev
* commit 'a8f55d158c9926afbf5ab2f8f4434d8db5447e0e':
  Add Calls.TRANSCRIPTION to CallLog (2/2)
2014-07-24 23:49:06 +00:00
Chris Craik
dccb740633 am ec2386ae: am 394e8703: am 2d3c6c93: Connect shadow style attributes to renderer
* commit 'ec2386aefd473d6ebe10a0037c20fbb61ee40a52':
  Connect shadow style attributes to renderer
2014-07-24 23:48:45 +00:00
Robert Ly
f5aba5ca1a am ae40df3e: am c955cdb3: am 1be71de6: am 39572996: am 1903bbb8: am 22bdcd2f: Merge "cherrypick from klp-docs docs: formatting for html Change-Id: I1451615c09cc003a03d7585176036c4d695408f1" into klp-modular-docs
* commit 'ae40df3eff3037a9b9e4e88899a6c7a713121a23':
  cherrypick from klp-docs docs: formatting for html Change-Id: I1451615c09cc003a03d7585176036c4d695408f1
2014-07-24 23:48:37 +00:00
Justin Morey
53026b5e7e am cd8f1670: am 3a005ba0: am 75a72009: Merge "Fix build" into lmp-dev
* commit 'cd8f16704d71cc58d877c897b5566dffdb820e37':
  Fix build
2014-07-24 23:48:29 +00:00
Chet Haase
28308e8494 Fix corner case of RelativeLayout with pinned edges
LayoutParams without a specified layout_width value automatically
get a default of 0. This works in most cases, when the view is pinned by
various constraints (such as alignParentLeft and alignParentRight),
but breaks down when the child lies in negative coordinates.

Negative coordinates are supposed to be a signal, in RelativeLayout, that
that coordinate is variable. However, negative margins can cause a negative
value to be calculated, at which point it should be used as a concrete value,
not a behavior trigger.

The fix is to use Integer.MIN_VALUe as the tirgger instead, to distinguish that
impossible value from negative values which could reasonably have been computed
during measurement.

Also, removes dead code from earlier attempt at rtl.

Issue #10606777 Time picker can't display 10, 11, or 12 oclock when font size is huge
Issue #16516577 resolveLayoutDirection doesn't act as intended

Change-Id: Ia564603012f3c45636e69cd3776205fb544fda48
2014-07-24 23:28:20 +00:00
Selim Gurun
c5a1e2c872 Merge "Address API review" into lmp-dev 2014-07-24 22:06:48 +00:00
Selim Gurun
48f6c45069 Address API review
Bug: 16403458

Address API review. This change updates the FileChooser api. The
largest change is, as requested by API council, providing a helper
to reduce the code app developers need to implement. This
change does not include the CookieManager changes that was requested.

Change-Id: I30d75f36df6bc96d9842b63fdd25c4ff62aee5bb
2014-07-24 15:18:57 -07:00
George Mount
71d34ec5be Merge "Fix no transition when only shared element exists." into lmp-dev 2014-07-24 20:48:02 +00:00
George Mount
b4c5d7bf21 Fix no transition when only shared element exists.
Bug 16245703

Change-Id: Ie31baaf7f58038fc79ffca0206ce3bec0ef64cb4
2014-07-24 13:19:51 -07:00
Prerepa Viswanadham
5bec5af971 cleanup : delete BLE advertising related hidden state references in Bluetooth Adapter
Change-Id: Ia58a46392157e274f8fc4696e8e25af480eb2d2a
2014-07-24 19:28:12 +00:00
Svetoslav
f7c42c5067 Updated accessibility nodes not properly cached.
We have an accessibiliy node info cache in the process of each
accessibility service. Sometimes the cached node changes and
in this case we have evict from the cache the sub-trees rooted
at children that are no longer present. There was bug where if
none of the children is present anymore we did not evict their
sub-trees.

Also the verification logic was not stopping if a duplicate
node is seen potentially getting into an infinite loop.

bug:15729762

Change-Id: I7adf4f0a1bde07b385556d9acdded5059231f1f3
2014-07-24 19:24:42 +00:00
Ruben Brunk
1b1f1b611c camera2: Move noise model to dynamic metadata.
Bug: 16369384

Change-Id: I7a540705176c7be68431a977e2b7218ffa1bddd0
2014-07-24 17:43:54 +00:00
Chris Craik
058fc64001 Connect shadow style attributes to renderer
bug:15859361

Moves lighting info out of StatefulBaseRenderer, since it's not useful
at record time, and only used by OGLR.

Change-Id: I7ab065d02d9304afad1dc4c48597a7a621366f8e
2014-07-24 16:41:13 +00:00
Robert Ly
eb355efc1b am 39572996: am 1903bbb8: am 22bdcd2f: Merge "cherrypick from klp-docs docs: formatting for html Change-Id: I1451615c09cc003a03d7585176036c4d695408f1" into klp-modular-docs
* commit '39572996f25d4b4ce744d9d04080e33b687ab03b':
  cherrypick from klp-docs docs: formatting for html Change-Id: I1451615c09cc003a03d7585176036c4d695408f1
2014-07-24 16:22:29 +00:00
Justin Morey
b5deda7382 Fix build
Change-Id: I8790b274864610b7e00d7ea12efe96b3b826301f
2014-07-24 10:53:40 -05:00
Behdad Esfahbod
4774470e20 Merge "Add letter-spacing to Paint and TextView" into lmp-dev 2014-07-24 15:36:21 +00:00
Behdad Esfahbod
fa80f7491d Add letter-spacing to Paint and TextView
New API is hidden.

Bug: 15594400
Change-Id: I5cbe7aebef0b7280eb13924f2a706c0cb4a4688e
2014-07-24 18:46:07 -04:00
Robert Greenwalt
41f9696d51 Merge "Fix DUN-based tethering." into lmp-dev 2014-07-24 15:36:21 +00:00
Robert Greenwalt
fab50167a8 Fix DUN-based tethering.
It was calling into dead ConnectivityService code rather than using
the new ConnectivityManager shim code.

bug:15221541
Change-Id: I1e3eea8a658a162ce36673ed1cf7b1e7e4372c42
2014-07-24 14:39:51 -07:00
Adam Lesinski
d4bd75be4f Merge "Add <feature-group> tag and change aapt badging" into lmp-dev 2014-07-24 15:36:09 +00:00
Wei Wang
82a1cfa4fe Merge "Move AdvertiseData length check to BluetoothAdvertiser." into lmp-dev 2014-07-24 15:36:09 +00:00
Yorke Lee
feb2b8c0bf Merge "Add Calls.TRANSCRIPTION to CallLog (2/2)" into lmp-dev 2014-07-24 15:36:09 +00:00
Hector Dearman
d49d6bf0cd Merge "Update CookieManager API for Council review." into lmp-dev 2014-07-24 15:36:05 +00:00
Hector Dearman
ffae672881 Update CookieManager API for Council review.
Remove synchronized from setAcceptThirdPartyCookies

Bug: 16403458
Change-Id: I6073da2c03fd0952bc447f7cfe0d959148af6877
2014-07-24 18:10:25 +01:00
Nicolas Prevot
b593e79436 am 498694c6: am 1b4a211d: am 4fe8fe2b: Merge "Making the clipboard work across users." into lmp-dev
* commit '498694c67112923f85f3572c4b7ad093283d1f68':
  Making the clipboard work across users.
2014-07-24 19:59:48 +00:00
Alan Viverette
0fcdca1e8a am cedf8987: am 9343df3d: am 5e9d2bfb: Merge "Allow medium-long-press to initiate drag-to-open menus" into lmp-dev
* commit 'cedf898783fc574c1544661220161dd7a664a978':
  Allow medium-long-press to initiate drag-to-open menus
2014-07-24 19:58:47 +00:00
Yorke Lee
c91079c3c3 am 56c351b7: am 59942b1b: am 6faad8cb: Merge "Improve documentation for for CallLog.CONTENT_URI_WITH_VOICEMAIL" into lmp-dev
* commit '56c351b7781de509c0cadca265d441e486e1dd05':
  Improve documentation for for CallLog.CONTENT_URI_WITH_VOICEMAIL
2014-07-24 19:58:43 +00:00
Jungshik Jang
a50b1b28f5 am 7ba466ea: am 13dcf17a: am 3b4dcfa8: Implement OneTouchRecordAction and stop one touch record.
* commit '7ba466ea44d1fcd04efd1adec094bcb32cc18c28':
  Implement OneTouchRecordAction and stop one touch record.
2014-07-24 19:58:38 +00:00
Jungshik Jang
5748d583db am d0296ddb: am b32da7b5: am 5dfe8261: Merge "Add @hide and @SystemApi to HdmiTimerRecordSources" into lmp-dev
* commit 'd0296ddb76a1faf06fa319881b2e1509398c5597':
  Add @hide and @SystemApi to HdmiTimerRecordSources
2014-07-24 19:58:29 +00:00
Alan Viverette
9f5e76977b am 9343df3d: am 5e9d2bfb: Merge "Allow medium-long-press to initiate drag-to-open menus" into lmp-dev
* commit '9343df3d6e9a91a0147d7ac35116291ba51e6297':
  Allow medium-long-press to initiate drag-to-open menus
2014-07-24 19:48:19 +00:00
Yorke Lee
1a529e4487 am 59942b1b: am 6faad8cb: Merge "Improve documentation for for CallLog.CONTENT_URI_WITH_VOICEMAIL" into lmp-dev
* commit '59942b1be5ca62e83bcb09121203dca89971fd54':
  Improve documentation for for CallLog.CONTENT_URI_WITH_VOICEMAIL
2014-07-24 19:48:08 +00:00
Jungshik Jang
a81ca12dc3 am 13dcf17a: am 3b4dcfa8: Implement OneTouchRecordAction and stop one touch record.
* commit '13dcf17a859bb88569dc93287d69054d213a3e89':
  Implement OneTouchRecordAction and stop one touch record.
2014-07-24 19:48:03 +00:00
Jungshik Jang
b53fa20a5d am b32da7b5: am 5dfe8261: Merge "Add @hide and @SystemApi to HdmiTimerRecordSources" into lmp-dev
* commit 'b32da7b59497b1b569b8fe71c32747e8a45a6997':
  Add @hide and @SystemApi to HdmiTimerRecordSources
2014-07-24 19:47:46 +00:00
Yorke Lee
7a5e5726ab Add Calls.TRANSCRIPTION to CallLog (2/2)
Dialer needs access to the TRANSCRIPTION column via the CallLog to
show voicemail transcriptions inline.

Change-Id: Id1807923a07af9e9e34783e6be2e39485eee7795
2014-07-24 08:30:33 -07:00
Justin Morey
80440cc853 Expose setActiveProfileOwner() using @SystemApi
Change-Id: I1607fa90e76da495ede48f01ad250baae60108af
(cherry picked from commit 85db24136eefb01341760208541563aba05ce82e)
2014-07-24 15:23:09 +00:00
Justin Morey
254644779c Expose setActiveProfileOwner() using @SystemApi
Change-Id: I1607fa90e76da495ede48f01ad250baae60108af
2014-07-24 09:17:28 -05:00
Wei Wang
0e81ca2543 Move AdvertiseData length check to BluetoothAdvertiser.
This will keep AdvertiseData simple and avoid coupling with
BluetoothAdapter.

Change-Id: I3609652bdea1c6e757bac7d2dada7f8ddf20a5e3
2014-07-23 20:39:12 -07:00
Jungshik Jang
b6591b8e53 Implement OneTouchRecordAction and stop one touch record.
In addition to it, add api for clearTimerRecording as well.
Separately, I will replace logic for notifying message with callback
interface.

Bug: 16160962

Change-Id: I2368f7c697eb44ed4542c0ec4412c63a6ae41a5c
2014-07-24 11:11:38 +09:00
ztenghui
397f6ee931 am 6ff3dce5: am b3067e74: am 69e50375: Add negative sign separation support in the pathData
* commit '6ff3dce5a65494a4ae98949a0d9452045f8af9d6':
  Add negative sign separation support in the pathData
2014-07-23 22:00:12 +00:00