summaryrefslogtreecommitdiffstats
path: root/packages
Commit message (Collapse)AuthorAgeFilesLines
* Add measurement API to DefaultContainerServiceKenny Root2010-12-045-0/+153
| | | | | | | | | | System applications that don't have "media_rw" access need some way to measure the size of directories on the SD card and other internal media. Add this API to DefaultContainerService so they can simply bind to the service and make an RPC. Bug: 3203974 Change-Id: I4e1bcd7a1b702b156c011ecc04f6915022cb258a
* Merge "Make the size of "shirt pocket" 0 when the icon of "shirt pocket" is ↵satok2010-12-022-6/+6
|\ | | | | | | invisible"
| * Make the size of "shirt pocket" 0 when the icon of "shirt pocket" is invisiblesatok2010-12-032-6/+6
| | | | | | | | | | | | bug: 3230503 Change-Id: I1028a92b6ce048c39af1e89845576198132b3176
* | Tweak the settings panel assets / layout. Not done yet.Joe Onorato2010-12-027-40/+73
| | | | | | | | Change-Id: Ib014947f1260cb290818b7af0151fe0c165950c6
* | Brightness and volume controls in the quick settings panel.Joe Onorato2010-12-027-0/+382
| | | | | | | | Change-Id: I2d2394c84a2783772f16dbeb88664381917e0ead
* | Show the operator or wifi ssid in the status bar panel.Joe Onorato2010-12-023-36/+51
|/ | | | Change-Id: Ia2983bce35c5f2ab706995777c80e96cc9a4c2ae
* Merge "Rename Indonesian and Hebrew translations to match Locale.java ↵Eric Fischer2010-12-028-0/+0
|\ | | | | | | conventions"
| * Rename Indonesian and Hebrew translations to match Locale.java conventionsEric Fischer2010-12-028-0/+0
| | | | | | | | Change-Id: Icf4f1896d13a4b6bf86503b16bde189f1834fdcc
* | Integrating updated SystemUI assetsJustin Ho2010-12-0210-0/+0
|/ | | | Change-Id: I2683c16c30a543cc3365fa9f3a93a238aac272ed
* Do not allow lights out mode for old apps.Daniel Sandler2010-12-021-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Legacy applications using FLAG_FULLSCREEN do so principally to get as much screen real estate as possible; reducing clutter is usually a secondary concern. The new UI style takes care of the latter for the most part, and the former is irrelevant because the xlarge system bar never goes away. Lights out---and with it the disappearance of important systemwide navigation controls---is probably *not* something these apps are expecting! Consider a game: it might want FLAG_FULLSCREEN on phone to take over your entire display, but might also rely on menu (to pause the game or bring up options) and home (to allow you to exit). Lights out makes these tasks much harder on the user because those buttons aren't visible anymore. So, to mitigate this potentially confusing situation, we now disable lights out for fullscreen legacy apps. [Hack, er, cleverness alert: We use NEEDS_MENU_KEY as a shorthand for "legacy app." This flag is set by pre-Honeycomb apps by default, but even an app built against the current API can request this flag; be forewarned that if you do, you won't get lights out mode in this particular system bar implementation when you use FLAG_FULLSCREEN.] Change-Id: If90d8354114ba45f9485b935b87ee575a30b9f87
* Merge "Import revised translations."Eric Fischer2010-12-0120-340/+180
|\
| * Import revised translations.Eric Fischer2010-12-0120-340/+180
| | | | | | | | Change-Id: Ie519c5155103e4f7715025d6e224b65f5fef8bb1
* | API CHANGE: drags can now carry an originator-only object payloadChristopher Tate2010-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When calling startDrag(), the app can now supply an Object to be passed along in every DragEvent that the app winds up receiving itself. This object is *not* passed to any other applications; it's strictly app- local. The purpose is to allow state tracking/management to be done directly through the drag mechanism rather than requiring out-of-band code. An example of the utility here might be TextEdit widgets. A drag that starts in one TextEdit but ends in a different one should be treated as a copy/paste operation, where the originating TextEdit is not altered. However, a drag that starts and ends in the *same* TextEdit is a 'move' operation within that TextEdit; the text is removed from its original position and inserted at the drop point. To support this easily, the drag/drop code in TextEdit can now pass a pointer to the originating view as the local state object. Then, the drop recipient could tell whether the drag started within the same TextEdit without needing to implement any other out-of-band state tracking. This CL (and its accompanying CLs in a few other packages where the startDrag() API is being used) adds the new local-state parameter to the API, but does not actually change the behavior of any existing clients. Change-Id: Icba73b2ab4a650b7a94485a19633065b0ef9058c
* | am 1de6ca69: am 938d0972: Merge "Grant ACCESS_ALL_DOWNLOADS to ↵Kenny Root2010-12-011-0/+1
|\ \ | |/ |/| | | | | | | | | DefaultContainerService" into gingerbread * commit '1de6ca69cc541ccdd651071c8bd5629af4e09664': Grant ACCESS_ALL_DOWNLOADS to DefaultContainerService
| * Grant ACCESS_ALL_DOWNLOADS to DefaultContainerServiceKenny Root2010-12-011-0/+1
| | | | | | | | | | | | | | | | Be compatible with the old DownloadProvider behavior of being able to operate on content URIs returned from .insert() Bug: 3242328 Change-Id: I7dad15ac0fefa867c3c8a33a579fc9899ac80262
* | Slightly more legible background for notification panel.Daniel Sandler2010-12-011-0/+0
| | | | | | | | | | | | | | | | This will be obsoleted by an even shinier design, but it's good enough for now. Bug: 3241324 Change-Id: I1c9c171729a5483c92d91406d2a19d1f941cc04f
* | When peeking at a notification, the X will close the window.Daniel Sandler2010-12-011-2/+14
| | | | | | | | | | Bug: 3241204 Change-Id: Ibc6751062170e85604179da3f01a9c1055a15b1f
* | When updating notifications, always reuse the last row.Daniel Sandler2010-11-301-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | Ordinarily, changing the "when" slot when updating a Notification will move its expanded payload to the bottom of the notification panel's list. But if it's already at the bottom, this causes an unsightly out-then-in animation sequence. We now check for that exact situation. Bug: 3222274 Bug: 3162218 Change-Id: I8b643b3f8bce64e57a22bdbb06d92c196c2484c2
* | Merge "Import revised translations."Eric Fischer2010-11-2961-702/+370
|\ \
| * | Import revised translations.Eric Fischer2010-11-2961-702/+370
| | | | | | | | | | | | Change-Id: I8d5fe7c1cf2f2a7903997da38b6abfe4dcabdab7
* | | Show the network type.Joe Onorato2010-11-293-7/+32
| | | | | | | | | | | | Change-Id: I3487655dce80eef26bfd575b63eb649d9b5e5325
* | | Do not disturb.Joe Onorato2010-11-296-2/+184
|/ / | | | | | | Change-Id: I9550970f322872787ef903ca762dfdf2ed9d2835
* | Show the down back instead of the left back when the IME is up.Joe Onorato2010-11-282-2/+25
| | | | | | | | Change-Id: Ief99935c4341b492d985c5f705b41f75e6b4d291
* | Auto-hide the peek window after 5 seconds, not right away.Joe Onorato2010-11-281-6/+4
| | | | | | | | Change-Id: Idf210f25e6cefc61a4eca40a9943dc156adafbf7
* | Deal with re-posting tickers.Joe Onorato2010-11-282-30/+85
| | | | | | | | Change-Id: If3c6e8ad57eb6682145cf8ed0f3755f176f117d0
* | tighten up the notifciation layoutsJoe Onorato2010-11-272-1/+9
| | | | | | | | Change-Id: I8e4f6a6412123fdd2d76381d568ab0bc3157b974
* | Check if this is null.Joe Onorato2010-11-271-1/+1
| | | | | | | | Change-Id: Ia74babdd1b1d76a2e5965db66bb995ea659dc6c1
* | Don't crash when there's a flood of tickers.Joe Onorato2010-11-271-2/+2
| | | | | | | | | | | | Tell if the queue is empty, not if there's currently something showing. Change-Id: I6d8530d4c749a7566419741710d588005a698e1a
* | Rename strings.Joe Onorato2010-11-2768-184/+184
| | | | | | | | Change-Id: I0a9d016aa5864e5d64e9cab6b0e720daaa816537
* | Scroll back to the top when the notification window closees.Joe Onorato2010-11-271-0/+1
| | | | | | | | Change-Id: I72cfe292950953cc3bebe27367dab5149cc10080
* | Rename the status bar layouts to more consistent namesJoe Onorato2010-11-2720-669/+28
| | | | | | | | Change-Id: Ic593e6c93794f2a2eb36576501d35be54a0a0681
* | Merge "Start filling in the system settings panel."Joe Onorato2010-11-266-6/+431
|\ \
| * | Start filling in the system settings panel.Joe Onorato2010-11-266-6/+431
| | | | | | | | | | | | Change-Id: I3384bb1cf6c2339d6136764635bb010ba096659b
* | | Removed InputMethodSubtypePickersatok2010-11-251-1/+1
| | | | | | | | | | | | Change-Id: I08abac5d65a30c02cc671f4f70e93df25b6c8a92
* | | Store the current IME's token in the system bar for changing the current IME ↵satok2010-11-256-33/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to a shortcut IME from the system bar Bug: 3212206 Bug: 3201828 - Added a shortcut IME button. This will be used for calling a shortcut IME (e.g. Voice input) - Made the positions of IME buttons left aligned - IME token is required to change IME because of the security reasons. Change-Id: I48ba5e2509b3aa1bfd2394f9201427fa6b93c6d3
* | | Adding missing assets, created from synced designers' treeGilles Debunne2010-11-2426-0/+0
| | | | | | | | | | | | Change-Id: I52c97ae90225abbea6b6b3966de705c9a5ef0e30
* | | Merge "Assets moved from drawable to drawable-mdpi. hdpi created"Gilles Debunne2010-11-244-0/+0
|\ \ \ | |/ / |/| |
| * | Assets moved from drawable to drawable-mdpi. hdpi createdGilles Debunne2010-11-184-0/+0
| | | | | | | | | | | | Change-Id: I1101e51f85fe44a635f48becb99d190465012379
* | | Align the battery & data icons correctly.Joe Onorato2010-11-241-6/+9
| | | | | | | | | | | | Change-Id: I006897306aa70b53f4626d88729c3d7c200b9e22
* | | Allow status bar panels to be on top of the status bar.Joe Onorato2010-11-244-5/+7
| | | | | | | | | | | | Change-Id: I3c74ece5f7042e6302717f4263746d59d5447ec9
* | | new signal strength assetsJoe Onorato2010-11-2334-35/+126
| | | | | | | | | | | | Change-Id: I6387d68659ff7ccf5024f186eeb75ab33c477a1f
* | | Merge "Stop listening to supplicant state change events"Irfan Sheriff2010-11-231-4/+1
|\ \ \
| * | | Stop listening to supplicant state change eventsIrfan Sheriff2010-11-231-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | wifi connected status should be based only on network state change events or it can lead to a race condition. Change-Id: Ib2343f0d192ef99959f908a370d55aae7ba86a5a
* | | | Merge overscrolling from gingerbread.Adam Powell2010-11-231-0/+1
| | | | | | | | | | | | | | | | Change-Id: I3eb4413261b38ddd8c609d6153bdfd4ae46c6a0f
* | | | Implement issue #3221502: New APIs to support new back stack / task navigationDianne Hackborn2010-11-222-11/+10
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What this adds: - A new Intent activity flag to completely replace an existing task. - A new Intent activity flag to bring the current home task up behind a new task being started/brought to the foreground. - New versions of startActivity() that take an array of Intents to be started, allowing applications to start a task in a specific state. - A public moveTaskToFront() method on ActivityManager, with a new flag that allows the caller to have the task moved to the front with the current home task immediately behind it. Change-Id: Ie8028d09acffb5349d98043c67676daba09f75c8
* | | new battery assetsJoe Onorato2010-11-211-4/+7
| | | | | | | | | | | | Change-Id: I61331a6eb237f8883bf604c0767623b08c2fa41b
* | | Use new nav button assets.Joe Onorato2010-11-2123-36/+31
| | | | | | | | | | | | Change-Id: I5728222ba173eedb67e6fa4c599b39b61c923e23
* | | The ticker shouldn't be modal.Joe Onorato2010-11-211-3/+3
| | | | | | | | | | | | Change-Id: I6bb4df07ad4659d900a95379193f5cb95d7706c3
* | | The icon sticks out of the ticker.Joe Onorato2010-11-219-36/+107
| | | | | | | | | | | | | | | | | | | | | The ticker still needs to show up over the status bar, which will take a bit of window manager work, so it's just out of position for now. Change-Id: Ib5781925db63a22d9352a7b5017a36eec3229395
* | | Deal with more notifications than fit on screen.Joe Onorato2010-11-213-29/+47
| | | | | | | | | | | | Change-Id: I432b9ee73a473fe4af8b0caeede4993c67be6518