OSDN Git Service

android-x86/packages-apps-Settings.git
15 years agoMerge change 6272 into donut
Android (Google) Code Review [Tue, 7 Jul 2009 00:03:03 +0000 (17:03 -0700)]
Merge change 6272 into donut

* changes:
  Fix bug 1946195 by making use of the current Locale to set a default value in the language pref list (bug was no selection in the default language list). Fix half of bug 1956707 where speech rate value as read from the settings was translated to a ratio, which applied an improper speech rate on the TTS engine (bug was setting a default rate makes the TTS demo unintelligible). Moved logic to set the default value in the language pref list in a separate private method to improve readability. Changed default rate values so that normal is 1x and the fastest is 2x.

15 years agoFix bug 1946195 by making use of the current Locale to set a default value
Jean-Michel Trivi [Mon, 6 Jul 2009 21:04:54 +0000 (14:04 -0700)]
Fix bug 1946195 by making use of the current Locale to set a default value
in the language pref list (bug was no selection in the default language list).
Fix half of bug 1956707 where speech rate value as read from the settings
was translated to a ratio, which applied an improper speech rate on the
TTS engine (bug was setting a default rate makes the TTS demo unintelligible).
Moved logic to set the default value in the language pref list in a separate
private method to improve readability.
Changed default rate values so that normal is 1x and the fastest is 2x.

15 years agoIntegrate VPN with new keystore and misc fixes.
Hung-ying Tyan [Mon, 6 Jul 2009 09:26:34 +0000 (17:26 +0800)]
Integrate VPN with new keystore and misc fixes.

* Changes
  + Pass intent to keystore when needed and hooks to resume from it.
  + Generate random, unique ID for profile instead of base64 from its
    name.
  + Add VPN to "Wirless controls" description.
  + Add credential storage to "Security & location" description.
  + More hints to set password and unlock dialogs in credential storage
    settings for actions that come from other processes.
  + Sort VPN profiles according to the names.
  + Replace Keystore with CertTool in L2tpIpsecEditor

15 years agoApply the new keystore and certtool library in Wifi setting.
Chung-yih Wang [Mon, 6 Jul 2009 09:03:53 +0000 (17:03 +0800)]
Apply the new keystore and certtool library in Wifi setting.

1. Certificate related APIs were moved to CertTool. Therefore,
   we have to migrate to CertTool instead.
2. Unlock the keystore if it is not unlocked yet(send the intent
   out to credential storage) for EAP access points.
3. Add Password field for WPA_EAP and IEEE8021X(this is for
   phase 2 auth.)

15 years agoAdd certificate to keystore for the ADD intent
Hung-ying Tyan [Sat, 4 Jul 2009 18:45:26 +0000 (02:45 +0800)]
Add certificate to keystore for the ADD intent

15 years agoAdd UNLOCK_CREDENTIAL_STORAGE and ADD_CREDENTIAL
Hung-ying Tyan [Sat, 4 Jul 2009 02:16:07 +0000 (10:16 +0800)]
Add UNLOCK_CREDENTIAL_STORAGE and ADD_CREDENTIAL

Add UNLOCK_CREDENTIAL_STORAGE and ADD_CREDENTIAL intents to manifest.

15 years agoFix strings.
Hung-ying Tyan [Fri, 3 Jul 2009 16:39:58 +0000 (00:39 +0800)]
Fix strings.

* Changes
  + "Disconnect from network"
  + "Remember username"
  + "Unable to connect to the network"

15 years agoAdd credential storage settings.
Hung-ying Tyan [Wed, 1 Jul 2009 16:26:46 +0000 (00:26 +0800)]
Add credential storage settings.

* Changes
  + Initial implementation of credential storage settings.
  + Use alert icon on delete and reconnect dialogs in VpnSettings.
    (piggy-backed)
  Patch Set 12:
  + Add password length and no-space verification.
  + Simplify dialog view xml files.

15 years agoDisable the individual remote Bluetooth devices when BT is off
Michael Chan [Wed, 1 Jul 2009 21:06:43 +0000 (14:06 -0700)]
Disable the individual remote Bluetooth devices when BT is off

15 years agoAdd L2tpIpsecPskEditor.
Hung-ying Tyan [Wed, 1 Jul 2009 03:06:45 +0000 (11:06 +0800)]
Add L2tpIpsecPskEditor.

* Changes
  + Add L2tpIpsecPskEditor.java.
  + Save profile name in VpnEditor to be used in saveSecrets().

15 years agoFix bug 1943785 where the default country string could be accessed while
Jean-Michel Trivi [Tue, 30 Jun 2009 22:09:23 +0000 (15:09 -0700)]
Fix bug 1943785 where the default country string could be accessed while
still being null. This was due to Settings.Secure.getString() returning
null when a property isn't found, instead of a string with the value "null".

15 years agoRedo power widget layout with the proper widget style.
Ken Shirriff [Mon, 29 Jun 2009 23:23:07 +0000 (16:23 -0700)]
Redo power widget layout with the proper widget style.

The power widget now uses the fuzzy-edged widget background.
It has a resonable layout in portrait and landscape.
appwidget_inner is the background for a button on the inside, with a border on the left.
appwidget_outer is the background for a button on the outside (i.e. leftmost); it
does not have a border.

15 years agoClean up some of the intent filters in the manifest.
Dianne Hackborn [Sat, 27 Jun 2009 01:20:23 +0000 (18:20 -0700)]
Clean up some of the intent filters in the manifest.

15 years agoAdd L2TP secret, L2TP/IPSec PSK support. Fix screen orientation.
Hung-ying Tyan [Fri, 26 Jun 2009 06:24:50 +0000 (14:24 +0800)]
Add L2TP secret, L2TP/IPSec PSK support. Fix screen orientation.

* Changes
  + Add L2tpActor, L2tpEditor, L2tpIpsecPskActor.
  + Make L2tpIpsecEditor extend L2tpEditor.
  + Revise the code for saving username. Make
    VpnSettings.saveProfileToStorage() static.
  + Fix support for screen orientation change in both VpnSettings and
    VpnEditor.

  Patch Set 2:
  + Remove Util.isNullOrEmpty(). Use TextUtils.isEmpty() instead.
  + Remove unused imports. Wrap lines longer than 80 chars.

  Patch Set 3:
  + Fix all the strings according to UI feedback.
  + Remove all the added actor subclasses and move password to editor.
  + Remove VPN entry in Security & location.

  Patch Set 4:
  + Misc string fixes.

  Patch Set 5:
  + Add strings for credential storage settings.
  + Changed the error dialog icon.
  + Fix "Remember me" indentation in connect dialog.

  Patch Set 6:
  + resolve res/values/strings.xml

15 years agoCDMA Settings additions
Chouting Zhang [Wed, 24 Jun 2009 19:25:43 +0000 (14:25 -0500)]
CDMA Settings additions

This patch implement CDMA Settings features
1. Add code to get MEID, MIN, and PRL value if the phone is a CDMA Phone
2. Display MEID, MIN, and PRL on Settings screen if it is a CDMA phone
3. Do not display IMSI, IMEI, and IMEI SV for a CDMA phone

15 years agoEdit second line of Search settings. First part of fix to bug1928620.
Roy West [Thu, 25 Jun 2009 20:40:28 +0000 (13:40 -0700)]
Edit second line of Search settings. First part of fix to bug1928620.

15 years agoMerge change 5391 into donut
Android (Google) Code Review [Thu, 25 Jun 2009 19:38:11 +0000 (12:38 -0700)]
Merge change 5391 into donut

* changes:
  Fix an NPE.

15 years agoFix an NPE.
Amith Yamasani [Thu, 25 Jun 2009 19:27:21 +0000 (12:27 -0700)]
Fix an NPE.

Sometimes name is null, compare the other way around.

15 years agoMerge change 5374 into donut
Android (Google) Code Review [Thu, 25 Jun 2009 19:18:54 +0000 (12:18 -0700)]
Merge change 5374 into donut

* changes:
  Remove pitch selection from TTS settings. Use the settings name for the locale property rather than the UI key. Add prefs entry to install the voice data.

15 years agoDisplay a warning dialog when the user enables USB debugging.
Mike Lockwood [Thu, 25 Jun 2009 17:36:00 +0000 (13:36 -0400)]
Display a warning dialog when the user enables USB debugging.

Signed-off-by: Mike Lockwood <lockwood@android.com>
15 years agoRemove pitch selection from TTS settings.
Jean-Michel Trivi [Thu, 25 Jun 2009 17:03:43 +0000 (10:03 -0700)]
Remove pitch selection from TTS settings.
Use the settings name for the locale property rather than the UI key.
Add prefs entry to install the voice data.

15 years agoTrack native processes.
Amith Yamasani [Fri, 19 Jun 2009 16:27:35 +0000 (09:27 -0700)]
Track native processes.

Add gauge to detail screen and make it look like the item from summary screen.
Some string changes.

15 years agoSome cleanup of settings launching, adding shortcuts.
Dianne Hackborn [Wed, 24 Jun 2009 19:45:09 +0000 (12:45 -0700)]
Some cleanup of settings launching, adding shortcuts.

- Move the battery usage item from applications to phone info.
- Give the battery usage item a summary.
- Fiddle with the manifest to make it so we can launch parts of the settings
  app without messing up launching of the main app.  (That is, remove
  affinities so they each are treated as different tasks.)
- Add the ability to make shortcuts to some key settings panels.

15 years agoAdditional edits to strings when uninstalling system app updates.
Roy West [Wed, 24 Jun 2009 16:25:12 +0000 (09:25 -0700)]
Additional edits to strings when uninstalling system app updates.

Fixes bug 1940257.

15 years agoDescription and suggestion strings for Battery Usage detail screens.
Amith Yamasani [Tue, 23 Jun 2009 06:04:45 +0000 (23:04 -0700)]
Description and suggestion strings for Battery Usage detail screens.

15 years agoFix bug 1937431.
Roy West [Tue, 23 Jun 2009 23:53:37 +0000 (16:53 -0700)]
Fix bug 1937431.

Shorten cut-off location permission string.

15 years agoFirst part of fix to bug 1813461, changing "Factory reset" to "Uninstall updates"
Roy West [Tue, 23 Jun 2009 20:39:55 +0000 (13:39 -0700)]
First part of fix to bug 1813461, changing "Factory reset" to "Uninstall updates"

15 years agoUpdated TTS settings to support language, country and variant settings.
Jean-Michel Trivi [Mon, 22 Jun 2009 23:03:40 +0000 (16:03 -0700)]
Updated TTS settings to support language, country and variant settings.
Disable/enable entries based on whether language files are installed on the phone.
Added entry to install the language files on the phone.

15 years agoUse sentence style for "System tutorial"
Roy West [Fri, 19 Jun 2009 22:24:28 +0000 (15:24 -0700)]
Use sentence style for "System tutorial"
Bug 1742121

15 years agoAdd save-username checkbox in the connect dialog.
Hung-ying Tyan [Mon, 15 Jun 2009 12:24:38 +0000 (20:24 +0800)]
Add save-username checkbox in the connect dialog.

* changes
  + Add checkbox to layout file and handling code in related classes.
  + Add new methods to VpnProfileActor.
  + Move dialog handling to VpnSettings from AuthenticatorActor in order
    to support screen orientation change.
  + Hide "Connect" in the context menu if the profile is connecting.
  + Enable connecting profile in case it was disabled in last call.

15 years agoMerge change 4797 into donut
Android (Google) Code Review [Fri, 19 Jun 2009 20:09:26 +0000 (13:09 -0700)]
Merge change 4797 into donut

* changes:
  Use new location of USE_LOCATION_FOR_SERVICES setting (Secure).

15 years agoUse new location of USE_LOCATION_FOR_SERVICES setting (Secure).
Amith Yamasani [Fri, 19 Jun 2009 19:42:10 +0000 (12:42 -0700)]
Use new location of USE_LOCATION_FOR_SERVICES setting (Secure).

Due to the need to access the bit from SetupWizard, had to move
the setting to Settings.Secure from Settings.Gservices.

15 years agoUpdate the Text-To-Speech settings screen to allow listening to a TTS
Jean-Michel Trivi [Fri, 19 Jun 2009 01:44:52 +0000 (18:44 -0700)]
Update the Text-To-Speech settings screen to allow listening to a TTS
example after checking that the data required by the TTS engine is
properly installed.
Removed use of local constants for the the default TTS values, use
the values defined in TextToSpeech.Engine instead.

15 years agoRemove extra subtitle for legal preferences.
Amith Yamasani [Wed, 17 Jun 2009 23:57:30 +0000 (16:57 -0700)]
Remove extra subtitle for legal preferences.

Fixes #1894381

15 years agoFixed auto-uncap of Wifi status messages.
Amith Yamasani [Wed, 17 Jun 2009 18:57:42 +0000 (11:57 -0700)]
Fixed auto-uncap of Wifi status messages.

Fixes #1852765. Change strings to lowercase and capitalize on demand.

15 years agoMerge change 4378 into donut
Android (Google) Code Review [Wed, 17 Jun 2009 17:08:23 +0000 (10:08 -0700)]
Merge change 4378 into donut

* changes:
  Make the Quick Launch settings show localized application names.

15 years agoUse new Keystore APIs in vpn profile editor.
Chung-yih Wang [Wed, 17 Jun 2009 10:27:18 +0000 (18:27 +0800)]
Use new Keystore APIs in vpn profile editor.

15 years agoSimply the EAP certificate selection in Wifi Setting.
Chung-yih Wang [Wed, 17 Jun 2009 07:46:42 +0000 (15:46 +0800)]
Simply the EAP certificate selection in Wifi Setting.

-- use the new keystore APU to save one more selection in WiFi EAP setting.

15 years agoAdd setting for allowing Google to use location for better search results.
Amith Yamasani [Fri, 12 Jun 2009 05:32:33 +0000 (22:32 -0700)]
Add setting for allowing Google to use location for better search results.

15 years agoAnother edit, now in two places, now that I understand the workflow of resetting...
Roy West [Tue, 16 Jun 2009 21:07:55 +0000 (14:07 -0700)]
Another edit, now in two places, now that I understand the workflow of resetting the flow a bit better.

15 years agoMake the Quick Launch settings show localized application names.
Eric Fischer [Tue, 16 Jun 2009 20:31:22 +0000 (13:31 -0700)]
Make the Quick Launch settings show localized application names.

It looks like when you look up the name of an application bookmark,
you get the name in whatever locale the device was in when it first
booted.  Check the PackageManager to get a name in the current locale,
if possible, to display instead.

15 years agoString change to fix bug 1838792.
Roy West [Mon, 15 Jun 2009 21:40:17 +0000 (14:40 -0700)]
String change to fix bug 1838792.

15 years agoMerge change 4127 into donut
Android (Google) Code Review [Mon, 15 Jun 2009 17:09:41 +0000 (10:09 -0700)]
Merge change 4127 into donut

* changes:
  Make the SD Card settings use the system file size formatter.

15 years agoRemove SingleServerProfile import.
Hung-ying Tyan [Mon, 15 Jun 2009 11:37:38 +0000 (19:37 +0800)]
Remove SingleServerProfile import.

15 years agoRemove use of SingleServerProfile.
Hung-ying Tyan [Mon, 15 Jun 2009 04:36:04 +0000 (12:36 +0800)]
Remove use of SingleServerProfile.

* changes
  + mv SingleServerEditor.java VpnProfileEditor.java
  + Add loadExtraPreferecesTo() to VpnProfileEditor
  + Make L2tpIpsecEditor extend VpnProfileEditor and use loadExtraPreferencesTo()
  + Modify VpnEditor.getEditor() accordingly

15 years agoRemove isCustomized() check as the API is not used for now.
Hung-ying Tyan [Mon, 15 Jun 2009 03:17:30 +0000 (11:17 +0800)]
Remove isCustomized() check as the API is not used for now.

15 years agoRemove LAUNCHER category from VPN settings activity's intent filter.
Hung-ying Tyan [Sun, 14 Jun 2009 09:53:19 +0000 (17:53 +0800)]
Remove LAUNCHER category from VPN settings activity's intent filter.

Also add preference summary to the VPN entry in the security settings.

15 years agoMake the SD Card settings use the system file size formatter.
Eric Fischer [Sat, 13 Jun 2009 00:58:50 +0000 (17:58 -0700)]
Make the SD Card settings use the system file size formatter.

The one built into the settings class wasn't internationalized.

15 years agoImprove power control widget GUI.
Ken Shirriff [Fri, 12 Jun 2009 00:03:35 +0000 (17:03 -0700)]
Improve power control widget GUI.

Shrink power widget to 3 cells wide.  Reorder buttons to group wireless
and other.  Add color bar to indicate on/off.

15 years agoMinor UI improvements and showing of unplugged duration.
Amith Yamasani [Fri, 12 Jun 2009 21:15:20 +0000 (14:15 -0700)]
Minor UI improvements and showing of unplugged duration.

15 years agoMake the Settings side of the date format settings more locale-aware.
Eric Fischer [Fri, 12 Jun 2009 01:16:15 +0000 (18:16 -0700)]
Make the Settings side of the date format settings more locale-aware.

Remove the two formats that have a spelled-out month, since applications
using this setting are trying to format numeric dates.

Do not forcibly set the setting the first time you go into Date & Time --
let the setting remain null if it was null before.

Add a choice corresponding to null to the list of format options.  It will
look like "Normal (12-31-2009)" in the list, and will cause the system
to use whatever numeric format the locale calls for.

For the other choices, feed them to the locale-aware formatter so they
will appear with the punctuation that the locale calls for.

15 years agoAdd VPN settings classes to Settings app.
Hung-ying Tyan [Wed, 10 Jun 2009 14:52:44 +0000 (22:52 +0800)]
Add VPN settings classes to Settings app.

PATCH SET 2:
+ Add import com.android.settings.R

PATCH SET 3:
+ Remove @Override interface methods to be compilable by Java 1.5.

PATCH SET 4:
+ Add import android.net.vpn.VpnManager

PATCH SET 5:
+ Add license headers.

PATCH SET 6:
+ Remove Constant.java and move the constants to VpnSettings.
+ Make AuthenticationActor implement DialogInterface's handlers.
+ Remove trailing spaces.

PATCH SET 7:
+ Remove default username.

15 years agoMerge change 3994 into donut
Android (Google) Code Review [Fri, 12 Jun 2009 03:23:33 +0000 (20:23 -0700)]
Merge change 3994 into donut

* changes:
  Shrink power widget to 3 cells wide.

15 years agoMerge change 3973 into donut
Android (Google) Code Review [Fri, 12 Jun 2009 01:07:51 +0000 (18:07 -0700)]
Merge change 3973 into donut

* changes:
  Removing the summary texts for the Accessibility checkbox as requested by Raman.

15 years agoUse the keystore service instead of the direct file access.
Chung-yih Wang [Fri, 12 Jun 2009 00:16:26 +0000 (08:16 +0800)]
Use the keystore service instead of the direct file access.

Revert back to my merged change 3710.

15 years agoShrink power widget to 3 cells wide.
Ken Shirriff [Fri, 12 Jun 2009 00:03:35 +0000 (17:03 -0700)]
Shrink power widget to 3 cells wide.

15 years agoRemoving the summary texts for the Accessibility checkbox
Charles Chen [Thu, 11 Jun 2009 22:54:36 +0000 (15:54 -0700)]
Removing the summary texts for the Accessibility checkbox
as requested by Raman.

15 years agoMerge change 3814 into donut
Android (Google) Code Review [Thu, 11 Jun 2009 17:20:10 +0000 (10:20 -0700)]
Merge change 3814 into donut

* changes:
  Fix power widget bluetooth.

15 years agoRevert "Use the keystore service instead of the direct file acess."
Chung-yih Wang [Thu, 11 Jun 2009 10:13:49 +0000 (18:13 +0800)]
Revert "Use the keystore service instead of the direct file acess."

This reverts commit 289705f3311932a45adef1710358f5e302115013.

15 years agoFix the bug of missing EAP setting in wpa_supplicant.conf when a new EAP is configured.
Chung-yih Wang [Thu, 11 Jun 2009 09:56:04 +0000 (17:56 +0800)]
Fix the bug of missing EAP setting in wpa_supplicant.conf when a new EAP is configured.

15 years agoUse the keystore service instead of the direct file acess.
Chung-yih Wang [Wed, 10 Jun 2009 10:49:59 +0000 (18:49 +0800)]
Use the keystore service instead of the direct file acess.

-- removed the temporal Keystore.java.
-- added the empty passphrase for private key.

15 years agoSD card notification settings summary change for #1692416
Amith Yamasani [Thu, 11 Jun 2009 04:26:08 +0000 (21:26 -0700)]
SD card notification settings summary change for #1692416

15 years agoMerge change 3494 into donut
Android (Google) Code Review [Thu, 11 Jun 2009 03:34:09 +0000 (20:34 -0700)]
Merge change 3494 into donut

* changes:
  Use Phone.[get|set]SmscAddress() instead of OEMHookRaw.

15 years agoMore details in the summary and details screens.
Amith Yamasani [Tue, 9 Jun 2009 13:34:49 +0000 (06:34 -0700)]
More details in the summary and details screens.

Show packages included, time that a subsystem was on for.
Load label and icon in the background and cache the values.
Switch between totals and since-unplugged.
Other UI improvements.

15 years agoAdding support for selecting the default language for Text-To-Speech in Settings.
Jean-Michel Trivi [Wed, 10 Jun 2009 02:29:27 +0000 (19:29 -0700)]
Adding support for selecting the default language for Text-To-Speech in Settings.

15 years agoFix power widget bluetooth.
Ken Shirriff [Wed, 10 Jun 2009 23:26:08 +0000 (16:26 -0700)]
Fix power widget bluetooth.

Starting wifi would also start bluetooth, due to a stray line.
bug=1910079

15 years agoMerge change 3793 into donut
Android (Google) Code Review [Wed, 10 Jun 2009 22:31:18 +0000 (15:31 -0700)]
Merge change 3793 into donut

* changes:
  Update Portuguese translations.

15 years agoMerge change 3689 into donut
Android (Google) Code Review [Wed, 10 Jun 2009 22:25:21 +0000 (15:25 -0700)]
Merge change 3689 into donut

* changes:
  CompatibilityMode settings

15 years agoUpdate Portuguese translations.
Eric Fischer [Wed, 10 Jun 2009 22:12:18 +0000 (15:12 -0700)]
Update Portuguese translations.

15 years agoCompatibilityMode settings
Jean-Michel Trivi [Sat, 6 Jun 2009 01:37:29 +0000 (18:37 -0700)]
CompatibilityMode settings

15 years agoam 9e852f03: AI 149721: Import Portuguese translations.
Eric Fischer [Wed, 10 Jun 2009 19:31:43 +0000 (12:31 -0700)]
am 9e852f03: AI 149721: Import Portuguese translations.

Merge commit '9e852f03139b28c1f5ad2bc43c64bdf0adae9226' into donut

* commit '9e852f03139b28c1f5ad2bc43c64bdf0adae9226':
  AI 149721: Import Portuguese translations.

15 years agoAI 149721: Import Portuguese translations.
Eric Fischer [Wed, 10 Jun 2009 19:26:09 +0000 (12:26 -0700)]
AI 149721: Import Portuguese translations.

Automated import of CL 149721

15 years agoAdding Text-To-Speech default settings in the Settings application.
Jean-Michel Trivi [Sat, 6 Jun 2009 01:37:29 +0000 (18:37 -0700)]
Adding Text-To-Speech default settings in the Settings application.

15 years agoAdd EAP/802.1X configuration for WiFi Setting.
Chung-yih Wang [Wed, 3 Jun 2009 11:44:35 +0000 (19:44 +0800)]
Add EAP/802.1X configuration for WiFi Setting.

1. Remove the isEnterprise() filter in Scanresult.
2. This requires the new fields such as identity, eap, certificate/key
to support EAP authentication in Wifi Settings.
3. Add simple file-based keystore to select the cert/key from UI.

-- Updated from the comments.
-- Fix the bug for passing null pointer for adding spinner items.

15 years agoUse Phone.[get|set]SmscAddress() instead of OEMHookRaw.
jsh [Tue, 12 May 2009 18:26:55 +0000 (11:26 -0700)]
Use Phone.[get|set]SmscAddress() instead of OEMHookRaw.

15 years agoImplement the power-control widget.
Ken Shirriff [Mon, 8 Jun 2009 20:49:05 +0000 (13:49 -0700)]
Implement the power-control widget.

This widget allows uses to turn on/off bluetooth, wifi, gps, and sync,
and adjust brightness without going through the settings menu.

The widget provider updates the settings when the buttons are pressed.
The widget provider is also a receiver for events indicating that the
status was updated elsewhere and the buttons need to be changed.

15 years agoListen for changes to location pProvider enabled settings.
Mike Lockwood [Mon, 8 Jun 2009 03:07:20 +0000 (23:07 -0400)]
Listen for changes to location pProvider enabled settings.

This is needed so we can correctly update the network location checkbox
if the network location provider is disabled because the user disagreed
to the terms of service in a dialog shown by the provider.

Signed-off-by: Mike Lockwood <lockwood@android.com>
15 years agoRemove Network Location" opt-in dialog from "Security and Settings"
Mike Lockwood [Mon, 8 Jun 2009 00:11:39 +0000 (20:11 -0400)]
Remove Network Location" opt-in dialog from "Security and Settings"

This dialog is being moved to the Network Location Provider itself.

Signed-off-by: Mike Lockwood <lockwood@android.com>
15 years agoMerge change 3082 into donut
Android (Google) Code Review [Thu, 4 Jun 2009 16:20:09 +0000 (09:20 -0700)]
Merge change 3082 into donut

* changes:
  Removing empty b tag in string (that leaves a big multi-line warning in each build).

15 years agoAdd detail page for Battery usage and track GPS and foreground CPU.
Amith Yamasani [Wed, 3 Jun 2009 22:45:40 +0000 (15:45 -0700)]
Add detail page for Battery usage and track GPS and foreground CPU.

Show details such as Cpu time, Cpu foreground time, data sent/received,
and GPS usage.

15 years agoRemoving empty b tag in string (that leaves a big multi-line warning in each build).
Jean-Michel Trivi [Wed, 3 Jun 2009 22:17:22 +0000 (15:17 -0700)]
Removing empty b tag in string (that leaves a big multi-line warning in each build).

15 years agoFix string to reference 'system search' instead of 'global search'.
Mike LeBeau [Wed, 3 Jun 2009 14:50:49 +0000 (15:50 +0100)]
Fix string to reference 'system search' instead of 'global search'.

15 years agoUpdate some TODO comments.
Wink Saville [Fri, 29 May 2009 21:06:30 +0000 (14:06 -0700)]
Update some TODO comments.

15 years agoTop level screen for App Fuel Gauge.
Amith Yamasani [Fri, 22 May 2009 22:18:46 +0000 (15:18 -0700)]
Top level screen for App Fuel Gauge.

Shows sorted list of power usage (with some debug information) by the top 10
apps and subsystems. Doesn't yet take into account certain subsystems such
as data network usage, audio/video DSP usage, Bluetooth and lights other than
screen backlight.

Screen, Idle, Wifi and Voice usage and CPU time are accounted for.

Also need to add detail screens for each item and suggested actions.

15 years agoMerge change 1582 into donut
Android (Google) Code Review [Tue, 19 May 2009 05:27:30 +0000 (22:27 -0700)]
Merge change 1582 into donut

* changes:
  Teleca 2b changes.

15 years agoRequire BIND_APPWIDGET to bind widgets.
Jeff Sharkey [Thu, 7 May 2009 23:13:13 +0000 (16:13 -0700)]
Require BIND_APPWIDGET to bind widgets.

See http://b/issue?id=1839074 for more details.

15 years agoTeleca 2b changes.
Wink Saville [Wed, 13 May 2009 18:51:03 +0000 (11:51 -0700)]
Teleca 2b changes.

15 years agoAccessibility feature - settings (replacing 704 and merging with the latest Donut)
svetoslavganov [Fri, 15 May 2009 05:26:34 +0000 (22:26 -0700)]
Accessibility feature - settings (replacing 704 and merging with the latest Donut)

15 years agoMerge change 1418 into donut
Android (Google) Code Review [Tue, 12 May 2009 17:22:27 +0000 (10:22 -0700)]
Merge change 1418 into donut

* changes:
  Show locale names in alphabetical order, in their own language.

15 years agoShow locale names in alphabetical order, in their own language.
Eric Fischer [Tue, 12 May 2009 01:03:39 +0000 (18:03 -0700)]
Show locale names in alphabetical order, in their own language.

Bug 1776043: List the locales in alphabetical order.
Bug 1703550: List the locales in their own languages instead of
in the current language.

15 years agoAdd version number to Installed_App_Details
Suchi Amalapurapu [Fri, 8 May 2009 22:01:06 +0000 (15:01 -0700)]
Add version number to Installed_App_Details
Change uninstall string value to Factory reset for updated system apps
present a new confirmation dialog when factory resetting a system app.
refresh size, app properties and button's text(to clear, uninstall or factory reset) in onStart
Add new version attribute in layout. Add new layout attributes for app snippets instead of using the one
from ManageApps
Use managed dialogs to avoid leaks

15 years agoFix ANR caused by registering multiple listeners in DateTimeSettings.onCreate().
Jim Miller [Fri, 8 May 2009 01:26:05 +0000 (18:26 -0700)]
Fix ANR caused by registering multiple listeners in DateTimeSettings.onCreate().

15 years agoAlways add the bt profile to profile list on the arrive of a connect event
Michael Chan [Thu, 7 May 2009 01:08:58 +0000 (18:08 -0700)]
Always add the bt profile to profile list on the arrive of a connect event

Always add the bt profile to profile list on the arrive of a connect event. Previously,
the connect event is ignored if it is a profile that's not known ahead of time.

15 years agoFix locale selection to never chose a lang-only locale.
Robert Greenwalt [Wed, 6 May 2009 17:10:42 +0000 (10:10 -0700)]
Fix locale selection to never chose a lang-only locale.

This avoids us using the non-standard lang-only locale when communicating
off device.  Fixes 1810133.

15 years agoam 9d2976a: AI 148147: Import lots of zh_TW translation changes.
Eric Fischer [Fri, 1 May 2009 00:59:37 +0000 (17:59 -0700)]
am 9d2976a: AI 148147: Import lots of zh_TW translation changes.

Merge commit '9d2976a10baf1c26997c4db02babb14b5bd9204d' into donut

* commit '9d2976a10baf1c26997c4db02babb14b5bd9204d':
  AI 148147: Import lots of zh_TW translation changes.

15 years agoAI 148147: Import lots of zh_TW translation changes.
Eric Fischer [Fri, 1 May 2009 00:32:16 +0000 (17:32 -0700)]
AI 148147: Import lots of zh_TW translation changes.

Automated import of CL 148147

15 years agoam 554c844: AI 148026: Update zh_TW translations.
Eric Fischer [Fri, 1 May 2009 00:10:48 +0000 (17:10 -0700)]
am 554c844: AI 148026: Update zh_TW translations.

Merge commit '554c844c7d010f21acb210abab1818d8cbe3dabf' into donut

* commit '554c844c7d010f21acb210abab1818d8cbe3dabf':
  AI 148026: Update zh_TW translations.

15 years agoAI 148026: Update zh_TW translations.
Eric Fischer [Thu, 30 Apr 2009 23:48:34 +0000 (16:48 -0700)]
AI 148026: Update zh_TW translations.

Automated import of CL 148026

15 years agoMerge change 750 into donut
Android (Google) Code Review [Wed, 29 Apr 2009 21:44:34 +0000 (14:44 -0700)]
Merge change 750 into donut

* changes:
  Fixed the Bluetooth On/Off Checkbox in settings so it is enabled/disable properly.

15 years agoFixed the Bluetooth On/Off Checkbox in settings so it is enabled/disable properly.
Michael Chan [Wed, 29 Apr 2009 21:17:06 +0000 (14:17 -0700)]
Fixed the Bluetooth On/Off Checkbox in settings so it is enabled/disable properly.

In the BroadcastReceiver, pickup the new bluetooth status from the intent instead
of calling back to LocalBluetoothManager.  There could be race condition since
LocalBluetoothManager itself gets the same info via the BroadcastReceiver mechanism.
Also cleaned up logs.