2436 Commits

Author SHA1 Message Date
Android (Google) Code Review
8d07c06846 Merge change 6305 into donut
* changes:
  Fix up permissions for 'dumpsys backup'
2009-07-06 15:49:26 -07:00
Christopher Tate
34ebd0e1bb Fix up permissions for 'dumpsys backup' 2009-07-06 15:44:54 -07:00
Android (Google) Code Review
da93c26a3d Merge change 6271 into donut
* changes:
  Propagating the error codes through the TtsService
2009-07-06 14:38:39 -07:00
Android (Google) Code Review
21509240b0 Merge change 6283 into donut
* changes:
  Fix a bug where clicking the "more results" suggestion with the trackball did not seem to expand to show the corpus selectors. (http://b/1906643)
2009-07-06 14:37:54 -07:00
Android (Google) Code Review
d2882fa179 Merge change 6282 into donut
* changes:
  Fixes #1963214. ProgressDialog was using the wrong indeterminate progress asset.
2009-07-06 14:32:18 -07:00
Romain Guy
7ac6f3dac0 Fixes #1963214. ProgressDialog was using the wrong indeterminate progress asset. 2009-07-06 14:31:39 -07:00
Mike LeBeau
617202a53a Fix a bug where clicking the "more results" suggestion with the trackball
did not seem to expand to show the corpus selectors. (http://b/1906643)

It turns out that when the trackball was used to select this item, onItemClick
was getting called on the listener twice in AutoCompleteTextView#onKeyUp:
once when we call onKeyUp on the DropDownListView, and once a little further
down when we call performCompletion(). In our case, performCompletion() is
useless since it was intended for normal AutoCompleteTextViews which populate
text into the TextView when an item in the list is clicked, but we do not
rely on this. So the easiest fix is just to make performCompletion() do nothing
in our SearchAutoComplete subclass.
2009-07-06 14:29:25 -07:00
Charles Chen
a3f89295ad Propagating the error codes through the TtsService 2009-07-06 14:14:52 -07:00
Android (Google) Code Review
991eec03a7 Merge change 6252 into donut
* changes:
  Don't re-parse the framework resources all the time.
2009-07-06 14:09:16 -07:00
Android (Google) Code Review
79ec07b333 Merge change 6241 into donut
* changes:
  Fixes #1444844. Set a maximum fling velocity in scrollable views.
2009-07-06 13:10:50 -07:00
Android (Google) Code Review
56fbd8d86a Merge change 6258 into donut
* changes:
  Fix the comment -- "charged" not "sharted."  Also, the other strings on that screen seem to have periods.  I think that's wrong, but it's better to be consistent that right.
2009-07-06 12:56:32 -07:00
Joe Onorato
3a3b6a12bf Fix the comment -- "charged" not "sharted." Also, the other
strings on that screen seem to have periods.  I think that's
wrong, but it's better to be consistent that right.
2009-07-06 15:49:04 -04:00
Android (Google) Code Review
57f2cba2db Merge change 6255 into donut
* changes:
  Fix the comments for the string resources for the charge status.
2009-07-06 12:39:28 -07:00
Joe Onorato
55c05e3ed3 Fix the comments for the string resources for the charge status. 2009-07-06 15:38:30 -04:00
Android (Google) Code Review
6eb987aca7 Merge change 6246 into donut
* changes:
  Fix bugs 1317754 - "Idle screen displays "Charging (100%)" even when fully charged." and 1885870 - "Shorten 'Clear notification' button to 'Clear' to match latest design"
2009-07-06 12:09:34 -07:00
Joe Onorato
c83edf47f4 Fix bugs 1317754 - "Idle screen displays "Charging (100%)" even when fully charged."
and 1885870 - "Shorten 'Clear notification' button to 'Clear' to match latest design"
2009-07-06 14:56:53 -04:00
Android (Google) Code Review
0d725f7d5a Merge change 6162 into donut
* changes:
  Hold a wakelock during backup/restore/clear operations
2009-07-06 11:54:34 -07:00
Christopher Tate
b6787f2ee5 Hold a wakelock during backup/restore/clear operations
We need to make sure we stay alive for the duration of a backup or (especially)
restore operation.  The existing Handler-based timing system was simply not
properly functional, so it's been retooled to use a repeating alarm delivering a
broastcast PendingIntent to our registered receiver.

We acquire a partial wake lock in the broadcast receiver [i.e. while the Alarm
Manager is holding one for the duration of broadcast delivery] and pass the
wakelock object to the backup thread, which eventually releases it when it's
finsihed operations.  A similar pattern is used for the threads handling restore
and clear.
2009-07-06 11:49:49 -07:00
Romain Guy
4296fc4d32 Fixes #1444844. Set a maximum fling velocity in scrollable views. 2009-07-06 11:48:52 -07:00
Android (Google) Code Review
9479a516cf Merge change 6154 into donut
* changes:
  Fix bug (#1947162)
2009-07-06 11:37:13 -07:00
Android (Google) Code Review
70421cf6b4 Merge change 6237 into donut
* changes:
  Add a silent ringtone.
2009-07-06 11:34:28 -07:00
Marco Nelissen
a6e45b4bb3 Add a silent ringtone. 2009-07-06 11:33:06 -07:00
James Dong
aa00e390c1 Fix bug (#1947162)
The bug (1947162) is caused by the fact that sometimes, surfaceChanged() is called after onCompletion().
In surfaceChanged(), start() is called automatically. The fix is to use a flag is avoid calling start()
when onCompletion() has been called already.
2009-07-06 11:30:29 -07:00
Android (Google) Code Review
87e393f1c8 Merge change 6227 into donut
* changes:
  Adding tts result codes.
2009-07-06 11:26:15 -07:00
Dianne Hackborn
78c405178c Don't re-parse the framework resources all the time.
A small optimization to the resource code, to not re-parse the framework
resources every time we build a new AssetManager.  Instead, you can now
construct a ResTable from a previously created one...  of course, like the
existing code for using the data in-place, you can't delete the original
ResTable until you have deleted the one that has been constructed from it.
2009-07-06 11:12:37 -07:00
Android (Google) Code Review
ef1f21b34f Merge change 6231 into donut
* changes:
  Don't trim() in the mediascanner, as that would remove the special "sort first" character.
2009-07-06 11:09:20 -07:00
Marco Nelissen
73bb511ade Don't trim() in the mediascanner, as that would remove the special "sort first" character. 2009-07-06 11:07:27 -07:00
Android (Google) Code Review
8ad422adaf Merge change 6221 into donut
* changes:
  Remove links to wikipedia; fix typo; remove .vsd file (bug 1918247).
2009-07-06 11:01:43 -07:00
Marco Nelissen
899725b05d Make sure ringtones are sorted correctly. 2009-07-06 10:57:01 -07:00
Charles Chen
35b86c273a Adding tts result codes. 2009-07-06 10:51:48 -07:00
Katarina Stenstedt
014a59bf40 Remove links to wikipedia; fix typo; remove .vsd file (bug 1918247). 2009-07-06 10:10:19 -07:00
Marco Nelissen
816cf52abd Fix the DEFAULT_SORT_ORDER value for media files. Changing this
is OK, because existing app will have the old value compiled in
as a literal, and so will continue to (not) work in the same
way as before. Add code to media key generator to give a leading
ascii \001 the special meaning of "sort first".
2009-07-06 09:58:06 -07:00
Hung-ying Tyan
46841db4f2 Add PPTP and L2TP/IPSec PSK service dispatching 2009-07-06 23:38:48 +08:00
Android (Google) Code Review
1f2bb46b9a Merge change 6204 into donut
* changes:
  Migrate to new keystore with the CertTool lib.
2009-07-06 03:55:07 -07:00
Hung-ying Tyan
7d22e15e1b Migrate to new keystore with the CertTool lib. 2009-07-06 17:12:53 +08:00
Android (Google) Code Review
3383df385e Merge change 6198 into donut
* changes:
  keystore: Provide a generic getter for native components.
2009-07-06 00:04:54 -07:00
Chia-chi Yeh
fd70bed692 keystore: Provide a generic getter for native components. 2009-07-06 14:33:09 +08:00
Chung-yih Wang
699ca3f251 Add password field for WiFi configuration.
1. the certtool.h is modified for avoiding the side effect,
   for saving the configuration with wpa_supplicant.
2. put the loadLibrary back in CertTool.java
3. Fix incorrect JNI declarations.
2009-07-05 11:06:01 +08:00
Android (Google) Code Review
4492bcb851 Merge change 6081 into donut
* changes:
  Migrate to the CertTool library.
2009-07-03 18:40:54 -07:00
Android (Google) Code Review
6b1ab2572e Merge change 6187 into donut
* changes:
  Fix strings.
2009-07-03 09:44:29 -07:00
Hung-ying Tyan
0102dc6b22 Fix strings.
* Changes
  + Remove "Up time:" from ongoing event display.
  + Add hint in disconnected notification.
2009-07-04 00:24:48 +08:00
Chung-yih Wang
bf20b9963a Migrate to the CertTool library.
Keystore is reimplemented and it is mainly for storing
(key, value) pair generically. The certificate related
APIs are moved to the class CertTool instead.

Updates:
  Provide the getInstance() which gives the singleton.
  Fix the missing construction of the BIO in cert.c.
2009-07-04 00:22:51 +08:00
Android (Google) Code Review
24ad29c6db Merge change 6177 into donut
* changes:
  Two small checks in keymgmt.
2009-07-03 08:51:59 -07:00
Android (Google) Code Review
7b8f782eaa Merge change 6183 into donut
* changes:
  Fix null data handling in ServiceCommand.writeCommand()
2009-07-03 02:52:55 -07:00
Hung-ying Tyan
116d890aea Fix null data handling in ServiceCommand.writeCommand() 2009-07-03 17:38:59 +08:00
Android (Google) Code Review
2f97e984b5 Merge change 6130 into donut
* changes:
  Make backup agent run in the system process as well.
2009-07-03 00:00:19 -07:00
Android (Google) Code Review
922f1b85b9 Merge change 6146 into donut
* changes:
  Fixing 1949086 Sholes telephony crash after waking from sleep.
2009-07-02 22:39:17 -07:00
Chung-yih Wang
a734207fd1 Two small checks in keymgmt.
1. Enforce the state check in listkey().
2. Enforce the password length check.
2009-07-03 12:14:36 +08:00
Wink Saville
1eee698c3e Fixing 1949086 Sholes telephony crash after waking from sleep. 2009-07-02 20:50:11 -07:00
Charles Chen
4bca97ecaf Removing IPA - IPA is already handled by the phoneme tag. 2009-07-02 17:21:22 -07:00