summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Fix the indicators in the button bar. The middle ones were showing ↵Amith Yamasani2010-09-271-4/+35
|\ | | | | | | the left indicators incorrectly." into gingerbread
| * Fix the indicators in the button bar. The middle ones were showing the left ↵Amith Yamasani2010-09-271-4/+35
| | | | | | | | | | | | | | | | | | | | indicators incorrectly. Earlier refactoring seems to have messed it up. Added a position value to the state trackers. Bug: 2980926 Change-Id: I31df4b1ae0b835d801d67747154594299498c4cf
* | reconcile froyo-release into gingerbreadJean-Baptiste Queru2010-09-260-0/+0
|\ \ | |/ |/| | | Change-Id: I2386774732d4d0d0e46a5791dfc1b8cbeb60494b
| * Remove Search from the system Settings app DO NOT MERGEBjorn Bringert2010-09-214-17/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The search settings acitivity lives in the system search app, which is build-dependent. Also, since the Browser no longer looks at the SHOW_WEB_SUGGESTIONS system preference, none of the search settings affect the behavior of any other platform apps. The search settings will henceforth only be available from within the search app (e.g. QuickSearchBox). Bug: 3017365 Change-Id: I08f3979cd8cdc0742efbc49be95aa59753c94c0d
* | Auto-connect Bluetooth device only when user initiates pairing.Jake Hamby2010-09-246-15/+20
| | | | | | | | | | | | | | | | | | | | | | Fix bug 2271901: do not auto-connect to services on a BT device when pairing was initiated by the device (e.g. for OPP file transfer). Also corrected some typos and removed an unneeded lock object in LocalBluetoothManager (synchronize on .class object instead, like android.bluetooth.BluetoothDevice.getService() does). Change-Id: I121105c6eee2658129f6094786754bbc7932d324
* | Import revised translations. DO NOT MERGEEric Fischer2010-09-2420-85/+85
| | | | | | | | Change-Id: Iad9da8a6c0559c93c87a3b9f7e8a9258d677705b
* | Fix Bluetooth device name max length checking.Jake Hamby2010-09-224-5/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Bluetooth device name has a maximum length of 248 bytes in UTF-8 encoding. The settings app previously limited the Bluetooth device name entered by the user based on the number of characters, which is incorrect when the name includes non-ASCII characters. Created a new Utf8ByteLengthFilter class for BluetoothNamePreference which counts UTF-8 bytes instead of Unicode characters, along with unit tests. We can move Utf8ByteLengthFilter into the framework in the future if it would be useful elsewhere in the system or for applications. Change-Id: I9debface09659f09d750f3bfe8ad6ddfd34c75c5
* | Remove Search from the system Settings app DO NOT MERGEBjorn Bringert2010-09-214-17/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The search settings acitivity lives in the system search app, which is build-dependent. Also, since the Browser no longer looks at the SHOW_WEB_SUGGESTIONS system preference, none of the search settings affect the behavior of any other platform apps. The search settings will henceforth only be available from within the search app (e.g. QuickSearchBox). This is a cherry-pick of change I08f3979cd8cdc0742efbc49be95aa59753c94c0d to gingerbread. Bug: 3017365 Change-Id: I55df30e3a0e1f307ad6f23900f54d3018efda59f
* | Merge "Some improvements to the manage apps code:" into gingerbreadDianne Hackborn2010-09-205-206/+405
|\ \
| * | Some improvements to the manage apps code:Dianne Hackborn2010-09-205-206/+405
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Battery stats now aggregates bluetooth usage. - Battery stats now uses new history iterator API. - Battery stats chart is refectored to have the start of a common facility for building tick charts. - Manage apps will now asynchronously wait for the apps list if it is taking >.25ms to build. Change-Id: I568dd74beedf9a0a5a4c88ab567510cee9af8299
* | | am f4d359d3: (-s ours) Remove Search from the system Settings app DO NOT MERGEBjorn Bringert2010-09-200-0/+0
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Merge commit 'f4d359d3c83d0e84319603ecc0f4dce120708612' into gingerbread * commit 'f4d359d3c83d0e84319603ecc0f4dce120708612': Remove Search from the system Settings app DO NOT MERGE
| * | Remove Search from the system Settings app DO NOT MERGEBjorn Bringert2010-09-204-17/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The search settings acitivity lives in the system search app, which is build-dependent. Also, since the Browser no longer looks at the SHOW_WEB_SUGGESTIONS system preference, none of the search settings affect the behavior of any other platform apps. The search settings will henceforth only be available from within the search app (e.g. QuickSearchBox). Bug: 3017365 Change-Id: I08f3979cd8cdc0742efbc49be95aa59753c94c0d
* | | Update power usage UI to follow WIFI data changes.Dianne Hackborn2010-09-174-20/+94
| | | | | | | | | | | | | | | | | | | | | | | | Now handles WIFI start times being distributed across applications, and collapses all work done in WIFI uid procs (esp that supplicant thing) into the apps and overall WIFI category. Change-Id: I341e5d63c45eeb0fb4121beed62474d947f9de11
* | | Merge "Don't disconnect the same device before connecting." into gingerbreadJaikumar Ganesh2010-09-161-10/+11
|\ \ \
| * | | Don't disconnect the same device before connecting.Jaikumar Ganesh2010-09-161-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We Pair: Remote device sends incoming connection, we get connected. We get BondingState change and we connect. Settings app disconnects connected profiles and then connects without checking whether we are disconnecting the same device itself. How was it working before ? Settings app used to queue all commands. The disconnect followed by the connect would work but unnecessarily disconnect and then connect. With the queuing moved to framework, the connect fails since the disconnect status has not been broadcasted. Settings app shouldn't be disconnecting connected profiles. That logic should reside in the framework. There is an open bug and when the new APIs get implemented this will get removed. Change-Id: I32a7fa36ff3c3321691c55071498f985dcdcfe8e
* | | | Merge "Supercalifragilisticexpialidocious." into gingerbreadDianne Hackborn2010-09-142-24/+31
|\ \ \ \
| * | | | Supercalifragilisticexpialidocious.Dianne Hackborn2010-09-142-24/+31
| |/ / / | | | | | | | | | | | | Change-Id: Ifaece97c80b859cb455eab56230e076eca916f4a
* | | | Use new apply() instead of commit().Brad Fitzpatrick2010-09-145-10/+9
|/ / / | | | | | | | | | | | | | | | | | | apply() starts an async disk write and doesn't have a return value but is otherwise identical in observable effects. Change-Id: I0f528607319d7eb5136bb11fce0b24d8741ccdf9
* | | Merge "OutOfband pairing user dialog." into gingerbreadJaikumar Ganesh2010-09-131-0/+7
|\ \ \
| * | | OutOfband pairing user dialog.Jaikumar Ganesh2010-09-091-0/+7
| | | | | | | | | | | | | | | | Change-Id: I2f996067b983ad4678814040eb0773fa3968be13
* | | | Enable the call setting when the VoIP feature is supported.Chung-yih Wang2010-09-111-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If the VoIP feature is included, the user need to be able to configure the internet call settings even if it is in airplan mode. Change-Id: I00d73fb0d9213162b8a9887cad0f800418446787
* | | | Import revised translations. DO NOT MERGEEric Fischer2010-09-1020-528/+328
|/ / / | | | | | | | | | Change-Id: I3a1f1eeb653d982ddc30c765a4a530aa48a364bf
* | | Merge "Preserve old translations for changed strings. DO NOT MERGE" into ↵Eric Fischer2010-09-0720-240/+120
|\ \ \ | | | | | | | | | | | | gingerbread
| * | | Preserve old translations for changed strings. DO NOT MERGEEric Fischer2010-09-0320-240/+120
| | | | | | | | | | | | | | | | Change-Id: I7ce80a0d57a6ff09dd12abab5ba6df9019d740ca
* | | | Follow rename.Dianne Hackborn2010-09-031-1/+1
| | | | | | | | | | | | | | | | Change-Id: I255df1429b999943d7b3d2ca2b453045f195fdb9
* | | | Fix issue #2905454: Crash observed while accessing Battery history page on ↵Dianne Hackborn2010-09-022-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | passion/GRG40 Change-Id: Ifd08744d909c2d87e5cdf4eedcc5af1a86548e60
* | | | BT: The Phone doesn't "wake up" when trying to pair with it.Erik Ljungberg2010-09-011-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To improve the pairing request usability: - In the case where a notification shall be used the standard notification sound is added - When the screen is off notification is always used. Change-Id: I751a7913517c64de5d7ba06d7c17358197d002c5
* | | | Show correct process dependency for providers.Dianne Hackborn2010-08-311-14/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the new API that allows us to always retrieve the desired provider info. Change-Id: I9265d8f169ee34c87f0ca89315ee78bb2ae49674
* | | | Merge "Make power control widget be more responsive. Fix StrictMode ↵Brad Fitzpatrick2010-08-302-157/+207
|\ \ \ \ | |/ / / |/| | | | | | | violations." into gingerbread
| * | | Make power control widget be more responsive. Fix StrictMode violations.Brad Fitzpatrick2010-08-272-157/+207
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also use new location providers changed broadcast intent, and fix a bug introduced in Froyo where we stopped observing the SYSTEM_CLOSE_DIALOGS intent so we fell out of sync (more often) with the sync settings. Now even responsive during the boot I/O storm! (except for toggling brightness, which still does disk writes from the UI thread...) BUG=2956025 Change-Id: I77876ff6e0be2325c15d5f08bb2970edf233f839
* | | | Import revised translations. DO NOT MERGEEric Fischer2010-08-2720-121/+141
|/ / / | | | | | | | | | Change-Id: I258c6a8b900eae6e101ad910b9414e5ba857246d
* | | Add new string for the notification to be displayed when the userJean-Michel Trivi2010-08-251-0/+6
| | | | | | | | | | | | | | | | | | installs a new TTS engine. Change-Id: If370cc40b0da858ec838711190d6b660b1c34ebf
* | | merge -s ours from froyo-release so that upgrading to gingerbread is a git ↵Jean-Baptiste Queru2010-08-230-0/+0
|\ \ \ | | |/ | |/| | | | | | | | | | fast-forward Change-Id: I1d1d611f22f6d0bc9dbdd29a4b1eff497e1afd74
| * | Import revised translationsKenny Root2010-07-1523-69/+149
| | | | | | | | | | | | Change-Id: Iff09dd159fc2aecef68ce8b3cf26e6832865f7e5
* | | Fix issue #2895310: Please fix problems with your stringsDianne Hackborn2010-08-201-12/+12
| | | | | | | | | | | | | | | | | | Make up some numbers. Change-Id: Ib3d1018282efd4979be8ef22384c9d64e67456e4
* | | More tricksy.Dianne Hackborn2010-08-191-6/+13
| | | | | | | | | | | | Change-Id: I4752344e0eea302ba28e907ff5bd5c20f74a82b7
* | | A couple small settings fixes:Dianne Hackborn2010-08-182-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | - Correctly position WIFI/GPS charts. - Start out with running services hidden in case we need to show the progress bar. Change-Id: I8852f334f68f4e9122b5d688d9fd57d0f94d94d8
* | | Import revised translations. DO NOT MERGEEric Fischer2010-08-1720-2/+122
| | | | | | | | | | | | Change-Id: If954fbc7c9ff4898e76e6e4dcde4f9dffdd7cbf2
* | | Make running services initial update async.Dianne Hackborn2010-08-154-10/+62
| | | | | | | | | | | | | | | | | | Also fix the value show for an app's awake time. Change-Id: I801681d3a1d47a6bb1f3fb8cc5b0ef009201146f
* | | Some improvements to the battery usage UI:Dianne Hackborn2010-08-136-23/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Show wake lock usage in the battery history. - Show WIFI usage in the battery history. - Show the amount an app has held a wake lock in the app details. - Also fix service run time computation in running services. Change-Id: I5aa959857f83808fbc709f65204f59bbfb73935b
* | | More version info.Dianne Hackborn2010-08-111-7/+17
| | | | | | | | | | | | Change-Id: I006951028135e95ce7bb2463f00649a691b5f615
* | | Import revised translations. DO NOT MERGEEric Fischer2010-08-106-17/+17
| | | | | | | | | | | | Change-Id: Iecf4053f74ab4c38b165291feef5211ce4cfc83e
* | | Import revised translations. DO NOT MERGEEric Fischer2010-08-0442-2805/+2894
| | | | | | | | | | | | Change-Id: Ic83849d97650cec0560d847a962756c53d65ea78
* | | Manage apps "third party" and "on sd card" filters were swapped.Dianne Hackborn2010-07-302-233/+222
| | | | | | | | | | | | | | | | | | | | | Also change the app details screen to make use of the common ApplicationsState object for its UI, improving launch performance. Change-Id: I387ed72a06d44aab47a85692c10247ce488c605c
* | | Improvements to manage apps / running services:Dianne Hackborn2010-07-289-188/+310
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Running services now keeps a single data structure to make switching through the UI a lot faster. - Display text when there are no apps. - Fix deadlock. - Add new preference entry to view manage apps for storage use. - Etc. Change-Id: I0f5babf407ed7e84169f59584ddcb6cd0e9d67d9
* | | Rewrite Manage Applications to be faster and simpler.Dianne Hackborn2010-07-274-1718/+796
| | | | | | | | | | | | Change-Id: I4cf405e83a369cb935bccf375798557ffd93e14e
* | | Fix drawing of phone signal chart.Dianne Hackborn2010-07-251-1/+1
| | | | | | | | | | | | Change-Id: I15253624ab37d3a494a541d813ee1bf2187e145d
* | | Add UI to report a running service to the developer.Dianne Hackborn2010-07-241-5/+86
| | | | | | | | | | | | Change-Id: Ia3f666344ee02bc96784b198533392252230bd80
* | | Various small UI cleanup in settings.Dianne Hackborn2010-07-244-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | - Remove title bar in various places where it is not useful. - Tighten up some text to avoid spilling across lines. - Remove strong wording about turning off GPS to save battery. Change-Id: Ieed9f8f3a3cf6a892a49362677594b447a266925
* | | Add facility to disable system packages.Dianne Hackborn2010-07-244-33/+128
| | | | | | | | | | | | Change-Id: I762c76993e0f88d255dfc04acbea6c6adea7103d