OSDN Git Service

android-x86/packages-apps-Settings.git
14 years agoFix the double-quoted SSID issue.
Chung-yih Wang [Sat, 15 May 2010 02:57:23 +0000 (10:57 +0800)]
Fix the double-quoted SSID issue.

Bug id http://b/issue?id=2684571

Change-Id: I0f1e508b9a3d0fefcef28235380392368a51e42a

14 years agoString change - wifi tether = hotspot
Robert Greenwalt [Sat, 8 May 2010 22:20:24 +0000 (15:20 -0700)]
String change - wifi tether = hotspot

bug:2664412
Change-Id: I6ca955e7fcc299ae1d69892c93c9250229610b19

14 years agob/2652059 Refresh UI after bond state change
Michael Chan [Fri, 7 May 2010 22:24:22 +0000 (15:24 -0700)]
b/2652059 Refresh UI after bond state change

Change-Id: I8f8a939ba3f383aae36091986cea4e8a6eae13fb

14 years agob/2652059 Fixed the broken BT connects/disconnects after unpair
Michael Chan [Tue, 4 May 2010 06:05:06 +0000 (23:05 -0700)]
b/2652059 Fixed the broken BT connects/disconnects after unpair

The unpair command was stuck in the queue.

Change-Id: I803cb10adcfaedbe6fd202e0db463593880e4280

14 years agoImport revised translations
Kenny Root [Thu, 29 Apr 2010 22:56:53 +0000 (15:56 -0700)]
Import revised translations

Change-Id: If5691d275bf86c94038a53beed65a93dad65b450

14 years agoMerge "b/2630339 Fixed the crash when an app requests BT to be enabled" into froyo
Michael Chan [Wed, 28 Apr 2010 19:43:00 +0000 (12:43 -0700)]
Merge "b/2630339 Fixed the crash when an app requests BT to be enabled" into froyo

14 years agob/2630339 Fixed the crash when an app requests BT to be enabled
Michael Chan [Wed, 28 Apr 2010 18:10:40 +0000 (11:10 -0700)]
b/2630339 Fixed the crash when an app requests BT to be enabled

For AlertActivity, the dialog needs to display at onCreate() time.
Otherwise, the decor view would be made. Trying to display the
dialog afterward would crash. Changed to AlertDialog instead.

Change-Id: I2ea8463b4c475b9b54746d0a722fa80eea3d4529

14 years agoMerge "Import revised translations" into froyo
Kenny Root [Wed, 28 Apr 2010 16:23:34 +0000 (09:23 -0700)]
Merge "Import revised translations" into froyo

14 years agoImport revised translations
Kenny Root [Tue, 27 Apr 2010 21:07:54 +0000 (14:07 -0700)]
Import revised translations

Change-Id: I91401f661d61a86d166baac1cad14b8897d0a467

14 years agoFix regression in removing settings that aren't relevant for a platform.
Amith Yamasani [Tue, 27 Apr 2010 19:36:33 +0000 (12:36 -0700)]
Fix regression in removing settings that aren't relevant for a platform.

Bug: 2630695

The PreferenceCategories added into the hierarchy caused removePreference() to
not work, since the preferences to be removed were not immediate children of
the preference screen.

Create empty PreferenceCategory elements and pull the preferences to the same
depth as the categories.

Change-Id: I34826ea4d84cda0ecab75c66a73febe3d51e7c68

14 years agoMerge "b/2608693 Fix the problem where BT was automatically reconnecting ... after...
Michael Chan [Fri, 23 Apr 2010 17:46:43 +0000 (10:46 -0700)]
Merge "b/2608693 Fix the problem where BT was automatically reconnecting ... after the user unpaired while docked." into froyo

14 years agob/2608693 Fix the problem where BT was automatically reconnecting
Michael Chan [Thu, 22 Apr 2010 23:07:35 +0000 (16:07 -0700)]
b/2608693 Fix the problem where BT was automatically reconnecting
... after the user unpaired while docked.

Change-Id: I65642f440109968387401fc3c103da0f2b15f49f

14 years agoFix string for uninstall button for system apps.
Suchi Amalapurapu [Thu, 22 Apr 2010 23:03:16 +0000 (16:03 -0700)]
Fix string for uninstall button for system apps.

Change-Id: Iad26aae3d99447eddb6997e66c84080cdce727da

14 years agoEnable moving packages when install location is set to auto.
Suchi Amalapurapu [Thu, 22 Apr 2010 17:56:51 +0000 (10:56 -0700)]
Enable moving packages when install location is set to auto.

Change-Id: If081ad949cb2aed6b3555275c582e951e579ffc9

14 years agoMerge "Redesign vibration settings." into froyo
Daniel Sandler [Thu, 22 Apr 2010 00:37:00 +0000 (17:37 -0700)]
Merge "Redesign vibration settings." into froyo

14 years agoMerge "Labeled categories to help clarify Sound prefs." into froyo
Daniel Sandler [Thu, 22 Apr 2010 00:36:48 +0000 (17:36 -0700)]
Merge "Labeled categories to help clarify Sound prefs." into froyo

14 years agoRedesign vibration settings.
Daniel Sandler [Wed, 21 Apr 2010 19:24:24 +0000 (15:24 -0400)]
Redesign vibration settings.

Under the hood there remain three axes:
 1. Are we in silent mode now?      | RINGER_MODE_{VIBRATE,SILENT}
 2. Do we vibrate in silent mode?   | VIBRATE_IN_SILENT == 1
 3. Do calls vibrate:     | getVibrateSetting(VIBRATE_TYPE_RINGER)
    - always              |    == VIBRATE_SETTING_ON
    - never               |    == VIBRATE_SETTING_OFF
    - only in silent      |    == VIBRATE_SETTING_ONLY_SILENT

We now expose this to the user much more simply by
collapsing (2) and (3) above, and discarding states that
don't make sense:
  - VIBRATE_SETTING_OFF + VIBRATE_IN_SILENT
  - VIBRATE_SETTING_ONLY_SILENT + !VIBRATE_IN_SILENT

Now we offer the user four choices:

    Phone vibrate:
    * "Never"
        --> VIBRATE_IN_SILENT=0, VIBRATE_SETTING_OFF
    * "Always"
        --> VIBRATE_IN_SILENT=1, VIBRATE_SETTING_ON
    * "Only in silent mode"
        --> VIBRATE_IN_SILENT=1, VIBRATE_SETTING_ONLY_SILENT
    * "Only when not in silent mode"
        --> VIBRATE_IN_SILENT=0, VIBRATE_SETTING_ON

This should make it easier to choose exactly the behavior
the user wants as well as avoid nonsensical combinations of
settings.

Bug: 2598014
Change-Id: I9244d25ec97a3e2b572b71b521049debd22fa4e0

14 years agoLabeled categories to help clarify Sound prefs.
Daniel Sandler [Tue, 20 Apr 2010 13:56:52 +0000 (09:56 -0400)]
Labeled categories to help clarify Sound prefs.

Bug: 2598014
Change-Id: Ia846367fc479345bfd02c10fe1860373719334eb

14 years agoFix the tethering help page.
Robert Greenwalt [Mon, 19 Apr 2010 19:22:48 +0000 (12:22 -0700)]
Fix the tethering help page.

It worked with language+country resources but for some resources it's just language.
Added a check to see if we had lanugage+country before deciding which to use.

bug:2605981
Change-Id: Icb667a51f0c376f5188e3a43f264e236cd265468

14 years agoMerge "Stop scanning after errors" into froyo
Irfan Sheriff [Sat, 17 Apr 2010 16:28:21 +0000 (09:28 -0700)]
Merge "Stop scanning after errors" into froyo

14 years agoStop scanning after errors
Irfan Sheriff [Fri, 16 Apr 2010 21:56:54 +0000 (14:56 -0700)]
Stop scanning after errors

When scan fails for 3 times, we show a
failure toast and continue to scan.
In one case this caused infinite toasts,
until the user stopped wifi.

Its not clear what can cause this kind of
a state since wifi disable broadcast should
stop the scans. This fix will stop scans
after 3 continuous failures. Any wifi state
change will restart scan.

Bug: 2601937
Change-Id: I68733394cb3c9b76ffb15f7579e7af6c1f54d39c

14 years agoSet encoding for HTML assets to UTF-8
Kenny Root [Fri, 16 Apr 2010 04:40:34 +0000 (21:40 -0700)]
Set encoding for HTML assets to UTF-8

Change-Id: Ia6989e94efc93e359b4035a1e0a99ab9262b7424

14 years agoMerge "Import revised translations" into froyo
Kenny Root [Thu, 15 Apr 2010 12:56:36 +0000 (05:56 -0700)]
Merge "Import revised translations" into froyo

14 years agoImport revised translations
Kenny Root [Thu, 15 Apr 2010 03:34:50 +0000 (20:34 -0700)]
Import revised translations

Change-Id: Ia29e5c15fbd147579185c31d03844ccc5a11032e

14 years agoMerge "Update the tethering help with correct link." into froyo
Robert Greenwalt [Wed, 14 Apr 2010 23:18:43 +0000 (16:18 -0700)]
Merge "Update the tethering help with correct link." into froyo

14 years agoMerge "Grey out wifi tethering in airplane mode" into froyo
Irfan Sheriff [Wed, 14 Apr 2010 22:32:32 +0000 (15:32 -0700)]
Merge "Grey out wifi tethering in airplane mode" into froyo

14 years agoGrey out wifi tethering in airplane mode
Irfan Sheriff [Wed, 14 Apr 2010 22:15:09 +0000 (15:15 -0700)]
Grey out wifi tethering in airplane mode

When airplane mode is enabled, wifi tethering
should be disabled since there is no real
use case for it.

This also addresses the issue
of trying to restore Wifi (with tethering on)
when airplane mode is disabled.

Bug: 2594720
Change-Id: I7379ebed74a58b148ae82ed589d09aa2b9ca767d

14 years agoMerge "Fix 2594148: confirm PIN/Password before resetting device" into froyo
Jim Miller [Wed, 14 Apr 2010 21:47:48 +0000 (14:47 -0700)]
Merge "Fix 2594148: confirm PIN/Password before resetting device" into froyo

14 years agoMerge "Fix 258181 Enable moving apps to external storage if install location is set...
Suchi Amalapurapu [Wed, 14 Apr 2010 21:05:38 +0000 (14:05 -0700)]
Merge "Fix 258181 Enable moving apps to external storage if install location is set and they had been moved to internal storage." into froyo

14 years agoUpdate the tethering help with correct link.
Robert Greenwalt [Tue, 13 Apr 2010 22:55:40 +0000 (15:55 -0700)]
Update the tethering help with correct link.

Also adding localized versions.

bug:2561337
bug:2591665
Change-Id: Ic2543d0c524738f67c3bbf51e0c707117671b0e4

14 years agoFix 2594148: confirm PIN/Password before resetting device
Jim Miller [Wed, 14 Apr 2010 00:43:36 +0000 (17:43 -0700)]
Fix 2594148: confirm PIN/Password before resetting device

This fixes a bug where user was allowed to factory reset the device
without entering their PIN/Password.

It also fixes the same issue with MediaFormat (Settings->SD Card->Format).

Change-Id: I0677a50aa771ad8663513fd7ec398a70953dcde2

14 years agoFix 2582241: Update selection based on user setting instead.
Jim Miller [Tue, 13 Apr 2010 22:31:41 +0000 (15:31 -0700)]
Fix 2582241: Update selection based on user setting instead.

When the user adds a DPM, Settings removes all display
timeout options with t > maxTimeout. It was incorrectly
setting the preference to maxTimeout.

The corrected code picks the user's preference if less
than maxTimeout or nothing otherwise.

Change-Id: I5a47fdce89f4cf216fd76bb585c3c0120b39db92

14 years agoFix 258181
Suchi Amalapurapu [Tue, 13 Apr 2010 18:51:58 +0000 (11:51 -0700)]
Fix 258181
Enable moving apps to external storage if install location is set and they had been
moved to internal storage.

Change-Id: I54b24303872dc525a86294c3d2b8c0c76dd366c5

14 years agoFix bug 2577511 NPE in TTS Settings
Jean-Michel Trivi [Tue, 13 Apr 2010 03:15:28 +0000 (20:15 -0700)]
Fix bug 2577511 NPE in TTS Settings
A previous bug had caused incorrect settings to be saved, in
particular the default language variant was not stored, unlike
the default language and country. When settings were restored, this
caused an invalid group of settings to be loaded, with a null
language variant. The fix consists in:
- discarding invalid default language settings
- reevaluating which language should be selected in the list of
  available languages.

Change-Id: If58882a9acc28f14a78f6142fefa17d04ca4ad5d

14 years agoMerge "Fixing bug #2591288" into froyo
Charles Chen [Tue, 13 Apr 2010 03:38:32 +0000 (20:38 -0700)]
Merge "Fixing bug #2591288" into froyo

14 years agoFixing bug #2591288
Charles Chen [Tue, 13 Apr 2010 01:32:33 +0000 (18:32 -0700)]
Fixing bug #2591288

The language pref needs to be set after populating the entries
based on the selected engine.

Change-Id: I16db4428eee83052ff7c5115942eef4bf3d87454

14 years agoFix 2579923: Update language to make consistent with related feature.
Jim Miller [Tue, 13 Apr 2010 00:37:56 +0000 (17:37 -0700)]
Fix 2579923: Update language to make consistent with related feature.

Change-Id: I2f07b92d717e4661ec3a2c25775fa90ef62caed3

14 years agoMerge "Fixing bug 2577511 - incorrectly trying to access a setting." into froyo
Charles Chen [Mon, 12 Apr 2010 21:21:59 +0000 (14:21 -0700)]
Merge "Fixing bug 2577511 - incorrectly trying to access a setting." into froyo

14 years agoMerge "Fix 2579923: Make changing lock screen method more discoverable." into froyo
Jim Miller [Mon, 12 Apr 2010 20:48:36 +0000 (13:48 -0700)]
Merge "Fix 2579923: Make changing lock screen method more discoverable." into froyo

14 years agoFixing bug 2577511 - incorrectly trying to access a setting.
Charles Chen [Mon, 12 Apr 2010 19:06:30 +0000 (12:06 -0700)]
Fixing bug 2577511 - incorrectly trying to access a setting.

Change-Id: I50f3b2f4878bea1392aa36d47015cd312a59e23a

14 years agoFix 2579923: Make changing lock screen method more discoverable.
Jim Miller [Fri, 9 Apr 2010 02:40:19 +0000 (19:40 -0700)]
Fix 2579923: Make changing lock screen method more discoverable.

This changes the organization of lock screen security settings
to make choosing an alternate unlock method more discoverable.

Instead of having to disable the old lock method to use a new
one, the user now just has one set/change option in lock settings,
with a list of method-specific setting below it.

In addition, we ask the user to confirm their old credentials
before prompting them to choose a new one, which eliminates one
source of confusion.

Also, ChooseLockGeneric now shows a UI if quality isn't specified.
Any unlock method less secure than minimum specified by
DevicePolicyManager (if active) is greyed out.

Change-Id: Iecc6f64d4d3368a583f06f8d5fe9655cc3d5bd3b

14 years agoMerge "scan only when wifi is enabled" into froyo
Irfan Sheriff [Sat, 10 Apr 2010 16:42:15 +0000 (09:42 -0700)]
Merge "scan only when wifi is enabled" into froyo

14 years agoscan only when wifi is enabled
Irfan Sheriff [Fri, 9 Apr 2010 18:34:33 +0000 (11:34 -0700)]
scan only when wifi is enabled

Bug: 2570611
Change-Id: Ibb51dee8ec110179ec28f9469526a1fe61e74d00

14 years agoFixing bugs 2577511 and 2581920.
Charles Chen [Thu, 8 Apr 2010 23:51:35 +0000 (16:51 -0700)]
Fixing bugs 2577511 and 2581920.
Making sure that the language, country, and variant defaults are always
set to something to ensure that there won't be an NPE.
Dismissing the ListPreference dialogs before a rotation to avoid list
data corruption caused by the list being displayed while its data is
being re-initialized.

Change-Id: Iecdb3b4d415542dc8a4db162c930e6a6570a55f2

14 years agoMerge "Fix 2579481: Fix change alphanumeric password security hole" into froyo
Jim Miller [Thu, 8 Apr 2010 20:39:57 +0000 (13:39 -0700)]
Merge "Fix 2579481: Fix change alphanumeric password security hole" into froyo

14 years agoMerge "Fix for 2579445 - Using the correct strings for accessing Intent extras now...
Charles Chen [Thu, 8 Apr 2010 16:45:17 +0000 (09:45 -0700)]
Merge "Fix for  2579445 - Using the correct strings for accessing Intent extras now." into froyo

14 years agoFix 2579481: Fix change alphanumeric password security hole
Jim Miller [Thu, 8 Apr 2010 07:48:52 +0000 (00:48 -0700)]
Fix 2579481: Fix change alphanumeric password security hole

This fixes a bug where changing an alphanumeric password didn't
ask for the old password first.

Change-Id: I8ef4d2b4b87d02c6ddd23da3177e6802fc579c64

14 years agoMerge "Fix 2579461 Disable move when manifest option for install location is unspecif...
Suchi Amalapurapu [Thu, 8 Apr 2010 04:24:44 +0000 (21:24 -0700)]
Merge "Fix 2579461 Disable move when manifest option for install location is unspecified and install location is auto/internal" into froyo

14 years agoFix 2579461
Suchi Amalapurapu [Thu, 8 Apr 2010 02:34:48 +0000 (19:34 -0700)]
Fix 2579461
Disable move when manifest option for install location is unspecified
and install location is auto/internal

Change-Id: Ic7a493ecbbed6017326e2ec728e25c6ea9de8223

14 years agoFix for 2579445 - Using the correct strings for accessing Intent extras now.
Charles Chen [Thu, 8 Apr 2010 00:41:07 +0000 (17:41 -0700)]
Fix for  2579445 - Using the correct strings for accessing Intent extras now.

Change-Id: I8a0b8f3add637ffffed4119b976c800ab3251b72

14 years agoMerge "b/2174155 Remove debug logging in bluetooth" into froyo
Michael Chan [Wed, 7 Apr 2010 22:48:07 +0000 (15:48 -0700)]
Merge "b/2174155 Remove debug logging in bluetooth" into froyo

14 years agoMerge "Fix for bug #2577984 - Settings app was trying to access the TTS before the...
Charles Chen [Wed, 7 Apr 2010 22:40:21 +0000 (15:40 -0700)]
Merge "Fix for bug #2577984 - Settings app was trying to access the TTS before the TTS was ready." into froyo

14 years agoFix window leak on orientation change
Irfan Sheriff [Tue, 6 Apr 2010 22:16:44 +0000 (15:16 -0700)]
Fix window leak on orientation change

Use Activity managed dialogs

Bug: 2571764
Bug: 2571820
Change-Id: Id506988abd4200155774e92b31dd132519e29172

14 years agoFix for bug #2577984 - Settings app was trying to access the TTS
Charles Chen [Wed, 7 Apr 2010 21:26:31 +0000 (14:26 -0700)]
Fix for bug #2577984 - Settings app was trying to access the TTS
before the TTS was ready.

Change-Id: Ic8127f12a2608982fb35e126c7522cf6747b93ac

14 years agob/2174155 Remove debug logging in bluetooth
Michael Chan [Wed, 7 Apr 2010 20:31:21 +0000 (13:31 -0700)]
b/2174155 Remove debug logging in bluetooth

Change-Id: Ia40af3bb362fe99fbfda1a23cdcb04fb96af7ca8

14 years agoMerge "b/2498180 b/2568119 Retry if BT dock disconnects unexpectedly" into froyo
Michael Chan [Wed, 7 Apr 2010 20:12:33 +0000 (13:12 -0700)]
Merge "b/2498180 b/2568119 Retry if BT dock disconnects unexpectedly" into froyo

14 years agoMerge "Fix bug 2564450 - prevent deadlock in BT settings" into froyo
Adam Powell [Wed, 7 Apr 2010 16:48:28 +0000 (09:48 -0700)]
Merge "Fix bug 2564450 - prevent deadlock in BT settings" into froyo

14 years agoMerge "Make Power Control widget a bit more responsive." into froyo
Brad Fitzpatrick [Wed, 7 Apr 2010 16:19:14 +0000 (09:19 -0700)]
Merge "Make Power Control widget a bit more responsive." into froyo

14 years agoFixing bug #2575499 - TextToSpeech Settings did not verify that the
Charles Chen [Tue, 6 Apr 2010 22:50:42 +0000 (15:50 -0700)]
Fixing bug #2575499 - TextToSpeech Settings did not verify that the
current default language was still supported when the default engine
changes.

Change-Id: I2f4b986311161ceaa9d4b9cf3a495f536d9425cd

14 years agoMake Power Control widget a bit more responsive.
Brad Fitzpatrick [Mon, 5 Apr 2010 17:12:09 +0000 (10:12 -0700)]
Make Power Control widget a bit more responsive.

Based on a lot of timings on Sapphire.

Also, initially this CL improved the speed of Toasts, but now it just
removes the use of Toasts in the widget after eng/UX discussions with
various people.

BUG=2535155

Change-Id: I134a730f17ebee8a119b7796984f00b22e0d6120

14 years agob/2498180 b/2568119 Retry if BT dock disconnects unexpectedly
Michael Chan [Tue, 6 Apr 2010 21:49:30 +0000 (14:49 -0700)]
b/2498180 b/2568119 Retry if BT dock disconnects unexpectedly

Change-Id: Ic4771e7c305192fee56f5f80c6cabeecf11a99dc

14 years agoFix bug 2564450 - prevent deadlock in BT settings
Adam Powell [Tue, 6 Apr 2010 20:32:35 +0000 (13:32 -0700)]
Fix bug 2564450 - prevent deadlock in BT settings

Change-Id: Iea5d341d771d18e5d9bf7c6686995ba6cbbf2172

14 years agoFix network disable on connect
Irfan Sheriff [Sat, 3 Apr 2010 00:36:19 +0000 (17:36 -0700)]
Fix network disable on connect

If we dont have an updated access point list
when we are re-enabling networks after connecting,
we could end up keeping some networks disabled.

This could happen if there is no event that
triggers an access point before enabling networks

Update the current access point list
right before enabling all networks.

Bug: 2567770
Change-Id: Ieb1ac8147d4acb05a6d13c44396653f0af94643d

14 years agoImport revised translations
Kenny Root [Sat, 3 Apr 2010 21:02:57 +0000 (14:02 -0700)]
Import revised translations

Change-Id: I7ce7aa7745bfb57870f1239dba8bd0bd714590dd

14 years agoMerge "Restore dependency between volume settings and silent mode." into froyo
Daniel Sandler [Fri, 2 Apr 2010 17:53:17 +0000 (10:53 -0700)]
Merge "Restore dependency between volume settings and silent mode." into froyo

14 years agoFix issue #2549511 Crash while moving the installed app to Phone
Dianne Hackborn [Wed, 31 Mar 2010 06:27:20 +0000 (23:27 -0700)]
Fix issue #2549511 Crash while moving the installed app to Phone

android.view.WindowManager$BadTokenException: Unable to add window

Change-Id: Ie844fd9cde05134431695f4f5bd27827e9e23ce5

14 years agoMerge "Refresh apps when they become (un)available." into froyo
Jeff Brown [Wed, 31 Mar 2010 16:27:25 +0000 (09:27 -0700)]
Merge "Refresh apps when they become (un)available." into froyo

14 years agoMerge "Fix issue# 2544176: running services list update outside of ui thread." into...
Dianne Hackborn [Wed, 31 Mar 2010 01:25:10 +0000 (18:25 -0700)]
Merge "Fix issue# 2544176: running services list update outside of ui thread." into froyo

14 years agoFix issue# 2544176: running services list update outside of ui thread.
Dianne Hackborn [Wed, 31 Mar 2010 01:07:04 +0000 (18:07 -0700)]
Fix issue# 2544176: running services list update outside of ui thread.

Also fix to put the services in a somewhat reasonable order.

Change-Id: I564c4d3fb1c0d803fe795c3d3a4a1d1d731f77fa

14 years agoMerge "Add Title to the Tether help dialog" into froyo
Robert Greenwalt [Tue, 30 Mar 2010 22:54:47 +0000 (15:54 -0700)]
Merge "Add Title to the Tether help dialog" into froyo

14 years agoFix the build - doh.
Mike LeBeau [Tue, 30 Mar 2010 21:45:00 +0000 (14:45 -0700)]
Fix the build - doh.

Change-Id: Iffaf7276340c00b3652e38580abdb218e5907917

14 years agoAdd new string to identify what speech recognizer the settings are for.
Mike LeBeau [Tue, 30 Mar 2010 19:03:39 +0000 (12:03 -0700)]
Add new string to identify what speech recognizer the settings are for.

http://b/2546173

Change-Id: I7d59a69eba0e4f3c87586c968574d291a200352c

14 years agoMerge "Fix 2527411: Remove unusable display timeouts from Settings." into froyo
Jim Miller [Tue, 30 Mar 2010 20:51:43 +0000 (13:51 -0700)]
Merge "Fix 2527411: Remove unusable display timeouts from Settings." into froyo

14 years agoAdd Title to the Tether help dialog
Robert Greenwalt [Tue, 30 Mar 2010 20:48:27 +0000 (13:48 -0700)]
Add Title to the Tether help dialog

bug:2546313
Change-Id: Ib70118b40289abd3cafdecf7fc814ca48bce2960

14 years agoRestore dependency between volume settings and silent mode.
Daniel Sandler [Tue, 30 Mar 2010 18:55:23 +0000 (14:55 -0400)]
Restore dependency between volume settings and silent mode.

Volume (of the ringer, notifications, media, and alarms) may
no longer be adjusted while the phone is in silent mode.
This was the behavior in Eclair and earlier releases.

This rolls back a small portion of change I724c43aa in the
interest of stability (see bugs listed below for weirdness
that occurs when the ringer's SeekBarVolumizer is visible
when the ringtone stream is muted).

Bug: 2552268
Bug: 2544706
Change-Id: I4858e6d85e5ec8c4bba83b649e24dd5915252eb2

14 years agoImport revised translations
Kenny Root [Tue, 30 Mar 2010 16:16:49 +0000 (09:16 -0700)]
Import revised translations

Change-Id: Ib730899be1485cc95ed6254279bae0c9413332b3

14 years agoFix 2527411: Remove unusable display timeouts from Settings.
Jim Miller [Tue, 30 Mar 2010 03:18:51 +0000 (20:18 -0700)]
Fix 2527411: Remove unusable display timeouts from Settings.

This fix removes unusable display timeouts from Settings when
a device policy is enabled.

Patch 3 catches the case where not having any active policies clears the list.

Change-Id: I5b08d420c73b1c2e6fe2bb4e65656790290574cd

14 years agoRefresh apps when they become (un)available.
Jeff Brown [Tue, 30 Mar 2010 00:51:23 +0000 (17:51 -0700)]
Refresh apps when they become (un)available.

This fixes a bug in the current code that causes apps to be removed
from the list when they become unavailable.

Change-Id: Ic0b4c0fa34662ce3c458117b6807742448ec6575

14 years agoMerge "DO NOT MERGE Removing unused features from source tree. Please refer to Bug...
Oscar Montemayor [Mon, 29 Mar 2010 23:23:53 +0000 (16:23 -0700)]
Merge "DO NOT MERGE Removing unused features from source tree. Please refer to Bug#2502219." into froyo

14 years agoMerge "Return empty string for new error code. The new string will be defined later...
Suchi Amalapurapu [Mon, 29 Mar 2010 22:31:34 +0000 (15:31 -0700)]
Merge "Return empty string for new error code. The new string will be defined later." into froyo

14 years agoReturn empty string for new error code.
Suchi Amalapurapu [Mon, 29 Mar 2010 22:15:31 +0000 (15:15 -0700)]
Return empty string for new error code.
The new string will be defined later.

Change-Id: I7dc80ca96461e083cd8d8fba4815ac263dac61a4

14 years agoSettings: Fix for http://b/issue?id=2538399 (ANR while formatting sd)
San Mehat [Mon, 29 Mar 2010 21:30:38 +0000 (14:30 -0700)]
Settings: Fix for b/issue?id=2538399 (ANR while formatting sd)

Change-Id: I94b84a45557cbce706c37d5088d398283a639c80
Signed-off-by: San Mehat <san@google.com>
14 years agoDO NOT MERGE
Oscar Montemayor [Sat, 27 Mar 2010 01:45:05 +0000 (18:45 -0700)]
DO NOT MERGE
Removing unused features from source tree.
Please refer to Bug#2502219.

Change-Id: Ib3321f3c0e3edf7dff947917ba9bad0f7da93c89

14 years agoAPI council: don't allow admin add from new task.
Dianne Hackborn [Fri, 26 Mar 2010 20:24:39 +0000 (13:24 -0700)]
API council: don't allow admin add from new task.

Change-Id: I45f75f8e2c43ba0dae51d37e104d18d0b1a2cdbf

14 years agoMerge "Fix 2535700: Add support for enforcing password quality"
Jim Miller [Fri, 26 Mar 2010 02:55:54 +0000 (19:55 -0700)]
Merge "Fix 2535700: Add support for enforcing password quality"

14 years agoFix 2535700: Add support for enforcing password quality
Jim Miller [Fri, 26 Mar 2010 01:45:22 +0000 (18:45 -0700)]
Fix 2535700: Add support for enforcing password quality

Change-Id: I908b4229d46061f3d450adec72b04276fe10afc1

14 years agoMerge "Stop scanning as soon as device is picked in the device picker."
Jaikumar Ganesh [Thu, 25 Mar 2010 22:57:17 +0000 (15:57 -0700)]
Merge "Stop scanning as soon as device is picked in the device picker."

14 years agoStop scanning as soon as device is picked in the device picker.
Jaikumar Ganesh [Thu, 25 Mar 2010 21:21:10 +0000 (14:21 -0700)]
Stop scanning as soon as device is picked in the device picker.

This improves OPP transfer time by a couple of seconds.

Change-Id: I40e8f092ca3950a2d180b78f07f1cc717f2daaf6

14 years agoRemember Wifi state prior to tethering
Irfan Sheriff [Thu, 25 Mar 2010 00:55:32 +0000 (17:55 -0700)]
Remember Wifi state prior to tethering

We now remember whether Wifi was enabled
prior to enabling tethering. This will
allow us to restore Wifi when tethering
is disabled.

Bug: 2537983
Change-Id: Ia530563bd5647856d62cd59b67ae5156de6fd5d9

14 years agoDisable tethering to enable Wifi
Irfan Sheriff [Wed, 24 Mar 2010 19:14:28 +0000 (12:14 -0700)]
Disable tethering to enable Wifi

We need to explicitly disable wifi while enabling
tethering and disable tethering while enabling wifi

Bug: 2539071
Change-Id: I7fda6e4d9d1bb804e81561d52b5f3a982a674b0e

14 years agoFix 2242164 Soft keyboard keeps getting enabled even if I disable it
Amith Yamasani [Thu, 25 Mar 2010 04:45:37 +0000 (21:45 -0700)]
Fix 2242164 Soft keyboard keeps getting enabled even if I disable it

On keyboardful devices, it is possible to disable the system soft input
method. Something changed in eclair that caused the ime to be re-enabled
on every package manager update (packages added/deleted).

Now keep track of disabled system imes in the settings db and search
in that list before enabling a system IME on package changes.

Every time the user goes to settings to enable/disable imes, the list
is re-created.

Any new system IMEs that may be added via an OTA will get enabled if
they have a different package name.

14 years agoWhen unmounting the sdcard, we are currently checking for apps that
Suchi Amalapurapu [Wed, 24 Mar 2010 16:05:59 +0000 (09:05 -0700)]
When unmounting the sdcard, we are currently checking for apps that
have open file references on the sdcard. We also have to check for apps on sd
that are currently running. Use the new ActivityManager api to get a list of these apps before deciding to show the dialog.

Change-Id: Idb00fcbd0a3f314d75ee1662cb2b10a84569527a

14 years agoMerge "Disable uninstall button when move is in progress. Handle onActivityResult...
Suchi Amalapurapu [Tue, 23 Mar 2010 23:11:32 +0000 (16:11 -0700)]
Merge "Disable uninstall button when move is in progress. Handle onActivityResult in ManageApplications when a package has been uninstalled."

14 years agoDisable uninstall button when move is in progress.
Suchi Amalapurapu [Mon, 22 Mar 2010 22:21:34 +0000 (15:21 -0700)]
Disable uninstall button when move is in progress.
Handle onActivityResult in ManageApplications when a package has been
uninstalled.

Change-Id: I4c4a8a54f9743f89949f47e21c1e143ac08ca2c3

14 years agoMerge "The getStorageUsers only returns list of storage users accessing the sdcard...
Suchi Amalapurapu [Tue, 23 Mar 2010 22:37:12 +0000 (15:37 -0700)]
Merge "The getStorageUsers only returns list of storage users accessing the sdcard. We also have to check if applications on sdcard are currently running."

14 years agoThe getStorageUsers only returns list of storage users accessing the sdcard.
Suchi Amalapurapu [Tue, 23 Mar 2010 22:02:13 +0000 (15:02 -0700)]
The getStorageUsers only returns list of storage users accessing the sdcard.
We also have to check if applications on sdcard are currently running.

Change-Id: I4b6478bc834e956f963735f69829c5ba4c7fb8c2

14 years agoUpdate running services in background thread.
Dianne Hackborn [Tue, 23 Mar 2010 17:40:44 +0000 (10:40 -0700)]
Update running services in background thread.

This avoid the main UI glitching when an update happens.  Also fix
some problems with how overall memory usage was shown.

Change-Id: Ida415eb07c8671059a24c3be1ebf16910f4b6da2

14 years agoMerge "Fix 2535700: Strings for additional security policies."
Jim Miller [Tue, 23 Mar 2010 08:02:02 +0000 (01:02 -0700)]
Merge "Fix 2535700: Strings for additional security policies."

14 years agoFix the incorrect keystore prefix of private key in the wpa_supplicant.conf.
Chung-yih Wang [Tue, 23 Mar 2010 04:15:33 +0000 (12:15 +0800)]
Fix the incorrect keystore prefix of private key in the wpa_supplicant.conf.

Change-Id: Ibc77d10f6c945d274037422b2e4e58d1bbd9888d

14 years agoFix 2535700: Strings for additional security policies.
Jim Miller [Tue, 23 Mar 2010 02:36:34 +0000 (19:36 -0700)]
Fix 2535700: Strings for additional security policies.

Change-Id: Icd2f31ae5393ee7b26113d8c3f31ef06b3469939