78145 Commits

Author SHA1 Message Date
Roman Nurik
66ff277fbd docs: Update design download links
Change-Id: I354d5dfd9c8c8843c217767ccb04447b30f79a48
2012-10-03 13:28:27 -07:00
Dirk Dougherty
c395f4a39c Doc change: Add core quality and tablet quality docs, tablet developer stories.
Change-Id: Ia88e66818200fdc20417c0fe20672a5758284028
2012-10-03 01:16:53 -07:00
Scott Main
ddab47b78c update sidenav structure for localized strings
dependent on change Ifcae4fcf716c8bb48f3ff18f17313b3f131c3f73

Change-Id: I8eaf83c454bb3e4eae4aac11473f371987c29ab1
2012-10-02 17:48:11 -07:00
Scott Main
11f03b4b69 DO NOT MERGE
cherrypick from jb-dev Change-Id: I9579a7eb04cb39d3b457dde390b6b2a7b240a429
docs: android training - Data Storage

Change-Id: I62b6d5385355555aa3e184bfd4418a0d2e0c1719
2012-10-02 16:14:36 -07:00
Scott Main
32a1d2dbf9 dashboard update for 10/1
Change-Id: I8930a4830eaa2fba7440832aae51db34ae06f84a
2012-10-01 12:02:43 -07:00
Scott Main
cd579c57bb wording tweak to brand guidelines
Change-Id: Ie1435ac97b6988b74fbcd1e1b29e4ff106492a13
2012-10-01 11:17:54 -07:00
Scott Main
b78c2207a0 Merge "updates to the brand guidelines, based on the partner toolkit" into jb-dev-docs 2012-09-28 15:02:28 -07:00
Joe Malin
829986a5f6 Merge "DOC CHANGE: Fix Google Play services page" into jb-dev-docs 2012-09-26 12:41:43 -07:00
Joe Malin
74708d896b DOC CHANGE: Fix Google Play services page
Change-Id: I9b175a01ee415fee187ff4257c36b9462acfd29b
2012-09-26 12:36:50 -07:00
Scott Main
d401d58e50 updates to the brand guidelines, based on the partner toolkit
Change-Id: Ie4ee8b11bc97d00412f48b6086fac72ad5c52006
2012-09-26 12:17:49 -07:00
Dirk Dougherty
8e3dca8d27 Merge "Doc change: Update GP services description." into jb-dev-docs 2012-09-26 11:58:30 -07:00
Dirk Dougherty
d2a8a5ecf9 Doc change: Update GP services description.
Change-Id: I9891c3bd900726d0c7fb39ac91157e6e58c52ed8
2012-09-26 11:54:18 -07:00
Scott Main
ed5ff3bdb0 add analog clock attributes to docs
Change-Id: I70e8a7897f9e076664ea5069ee9e19e458e8b36b
2012-09-26 11:42:09 -07:00
Scott Main
14a366255a fix markup bugs
Change-Id: I37111431505f7803c2374917b3c186529c6e3d60
2012-09-26 11:22:09 -07:00
Scott Main
3b1c5d5551 add tip about including android:id for layout state
Change-Id: I9bc9157b320f8a8ac37ab30bc31fb9c457ecf4f6
2012-09-25 19:01:09 -07:00
Joe Fernandez
e35d9280d6 cherrypick from jb-dev Change-Id: Idecee238d8872ca1c32a80d13ad61bacf89c39f7
docs: Systrace tool documentation

Change-Id: I85413fad63edd536a18123a5c09abee47051fca6
2012-09-25 17:52:02 -07:00
Scott Main
4a5425dbd2 fix layout bug
Change-Id: Ibf3f04d6c2077c77b75076c02312d3b2dea394eb
2012-09-21 15:55:15 -07:00
Scott Main
b79d8ecc27 udpate media formats for JB
Change-Id: Ide41c5dde11298e875c957467c39262dafadcc4c
2012-09-19 00:02:12 -07:00
Scott Main
442040208c cherrypick from jb-dev Change-Id: Ib0ec41960017725db3fbedb2b62350dc8f8d3468
new Google Play badges and some updates to corresponding pages

Change-Id: I8502a47b9d79d9a03a51c7baaacaa454fd63e5a5
2012-09-17 21:28:14 -07:00
Scott Main
b86b7f07d7 small update to the ADT installation steps based on new ADT UI 2012-09-17 10:58:28 -07:00
Katie McCormick
844d2a942e Doc update: ACTION_APPWIDGET_OPTIONS_CHANGED link 2012-09-17 10:57:22 -07:00
Scott Main
61d85c4347 add link to device dock lesson 2012-09-17 10:56:49 -07:00
Dirk Dougherty
24a024ecaf Doc change: fix typo in JB highlights. 2012-09-17 10:55:27 -07:00
Scott Main
d5abc5586e docs: update for multi apk doc for ABI support 2012-09-17 10:54:55 -07:00
Katie McCormick
73ec048e4d Doc update: Appwidgets JB additions. 2012-09-17 10:54:17 -07:00
Scott Main
54efa69f50 older not lower 2012-09-17 10:53:32 -07:00
Joe Fernandez
8982939d17 docs: Accessibility DevGuide, Jelly Bean edition 2012-09-17 10:50:42 -07:00
Scott Main
d46023d208 dashboard update for 9/4
switch to simplified pie charts: codenames for platforms and separate size and density charts
2012-09-17 10:50:03 -07:00
Katie McCormick
243170f759 Doc update: Fix typo. 2012-09-17 10:48:39 -07:00
Jake Hamby
b35e4d778a Fix CDMA decoding of multipart UTF-16 SMS messages.
Recent changes to support CMAS over CDMA introduced a bug causing
an exception to be thrown when decoding multipart UTF-16 encoded
messages. This change fixes the exception by correctly subtracting
the header size from the number of bytes to decode. It also adds
more robust error handling to try to decode the maximum length
possible instead of throwing an exception if the length is still
larger than the user data length after subtracting the header.

This also fixes a bug in the encoder, which was padding the
UTF-16 user data to 16-bit alignment, which is incorrect (should
be padded to an 8-bit boundary). The code happened to work because
we always generated a UDH that was an even number of bytes
(including length) so the padding was a no-op. The decoder works
correctly.

Bug: 6939151
Change-Id: Iba9e7156bd7df94e972963959a7ce1c78464f7f5
2012-08-29 16:36:22 -07:00
Dirk Dougherty
cf9e9d6273 Design doc change: Update download zips for design bundle and Roboto.
Bug: 7054673
Change-Id: I3a4d883f0d974e6e089c5f232c6d8b61e9c8fc56
2012-08-24 14:27:23 -07:00
Irfan Sheriff
86bb22584f Merge "Fix system server restart" into jb-dev 2012-08-22 16:12:30 -07:00
Katie McCormick
645eab640e Merge "Doc update: client javadoc fix for @value." into jb-dev 2012-08-22 14:33:27 -07:00
Katie McCormick
c44ba477b3 Doc update: client javadoc fix for @value.
Change-Id: I9e1327a21d0755fc10b4e5cb4aa9ecd30053b6ef
2012-08-22 13:56:17 -07:00
Roman Nurik
6d672214ae Merge "Update TabCompat training sample code download." into jb-dev 2012-08-22 12:30:46 -07:00
Wink Saville
2e2849a5e4 Merge "Empty DC's apnList when the DC is free." into jb-dev 2012-08-22 11:49:48 -07:00
Roman Nurik
5a45dd94d0 Update TabCompat training sample code download.
Depends on If6face5a0548107f7fd273e466b1ced2790f4f3a

Change-Id: I06c13cd02ca791a57a374b3c4af4b46e68dacda4
2012-08-22 11:28:07 -07:00
Wink Saville
b44b13a3f5 Empty DC's apnList when the DC is free.
Not doing this causes DC.apnList's to have multiple entries in the
apnlist which causes DC's to look like its connected to both IMS and
INTERNET. And when selecting CDMA only mode on a Xoom we will not bring
up the connection thus no data connectivity.

Bug: 6939338
Change-Id: I17bc17cd1938ebac773db8131d12d0fa724348b0
2012-08-21 22:58:54 -07:00
Justin Ho
72404a82d3 Merge "Update Back softkey icon Bug: 6020915" into jb-dev 2012-08-21 15:19:15 -07:00
Justin Ho
962daf9b1c Update Back softkey icon
Bug: 6020915

Change-Id: I780f09bd1e99a10b2189ab253dd1a082118a385d
2012-08-21 14:21:29 -07:00
Dirk Dougherty
a18cfccac5 Doc change: Remove japanese localized index page.
Change-Id: I69b60435e7062d6ec39fe91595232695a37f591d
2012-08-20 11:25:49 -07:00
Irfan Sheriff
bf3bf7cb60 Fix system server restart
Change-Id: Ia0b5e337726566ebc96901dadda3fc67eb967755
2012-08-17 16:19:22 -07:00
Svetoslav Ganov
8631701bb7 Allow enabled accessibility service to toggle tocuh exploration after an upgrade to JellyBean.
1. Before JellyBean touch exploration was a global setting controlled by the user via
   the UI. However, if the enabled accessibility services do not handle touch exploration
   mode, enabling it makes no sense. Therefore, in JellyBean the services request touch
   exploration mode and the user is presented with a dialog to allow that and if she
   does we store that in the database.

   As a result of the above change a user that has enabled  accessibility, touch
   exploration, and some accessibility services running a pre-JellyBean system
   version may lose touch exploration state, thus rendering the device useless unless
   sighted help is provided, since the enabled service(s) are not in the list of
   services to which the user granted a permission to put the device in touch explore
   mode.

   The fix is during a database upgrade to allow allow all enabled accessibility
   services to toggle touch exploration provided accessibility and touch exploration
   are enabled and no services can toggle touch exploration. Note that the user has
   already manually enabled the services and touch exploration which means the she
   has given consent to have these services work in touch exploration mode

bug:6996354

Change-Id: I0af2dc578cc4fbcc90043341035163b876978ab2
2012-08-15 22:13:03 -07:00
Scott Main
2d9063bc70 docs: Add a few links and small edits to a couple layout guides
Change-Id: I4c0c043782524a29f7fb8fcb54cc26d7399c39fc
2012-08-15 15:11:19 -07:00
Scott Main
9047e46657 Merge "docs: fix markup bug; remove extra </div>" into jb-dev 2012-08-15 14:47:30 -07:00
Scott Main
02d74a28ee docs: fix markup bug; remove extra </div>
Change-Id: I9d1fd280b5f077a423f12ce8e226d09e5e9f7b2b
2012-08-15 14:42:48 -07:00
Scott Main
18c2045bed Merge "revise info on Search button availability... behavior not guaranteed either bug: 6966922" into jb-dev 2012-08-15 09:47:27 -07:00
Scott Main
71c4fc818d Merge "docs: change download URLs for design assets. These new URLs are dummies that are handled by a redirect rule for all /downloads/... paths, that points to http://commondatastorage.googleapis.com/androiddevelopers/ Using this redirect allows us to change the storage location of the download assets in the future." into jb-dev 2012-08-14 14:23:40 -07:00
Scott Main
911711fd31 revise info on Search button availability... behavior not guaranteed either
bug: 6966922

Change-Id: I4122e6fb99b95da3f53b56333a5f27d2adde6d44
2012-08-14 13:20:53 -07:00
Scott Main
6958c161a9 Merge "docs: misc bug fixes from external issues" into jb-dev 2012-08-14 12:38:22 -07:00