summaryrefslogtreecommitdiffstats
path: root/src/com
Commit message (Collapse)AuthorAgeFilesLines
...
* | Use new Keystore APIs in vpn profile editor.Chung-yih Wang2009-06-171-21/+2
| |
* | Simply the EAP certificate selection in Wifi Setting.Chung-yih Wang2009-06-171-69/+57
| | | | | | | | -- use the new keystore APU to save one more selection in WiFi EAP setting.
* | Add setting for allowing Google to use location for better search results.Amith Yamasani2009-06-161-12/+136
|/
* Merge change 4127 into donutAndroid (Google) Code Review2009-06-152-42/+4
|\ | | | | | | | | * changes: Make the SD Card settings use the system file size formatter.
| * Make the SD Card settings use the system file size formatter.Eric Fischer2009-06-122-42/+4
| | | | | | | | The one built into the settings class wasn't internationalized.
* | Remove SingleServerProfile import.Hung-ying Tyan2009-06-151-1/+0
| |
* | Remove use of SingleServerProfile.Hung-ying Tyan2009-06-154-127/+98
| | | | | | | | | | | | | | | | * changes + mv SingleServerEditor.java VpnProfileEditor.java + Add loadExtraPreferecesTo() to VpnProfileEditor + Make L2tpIpsecEditor extend VpnProfileEditor and use loadExtraPreferencesTo() + Modify VpnEditor.getEditor() accordingly
* | Remove isCustomized() check as the API is not used for now.Hung-ying Tyan2009-06-152-6/+2
| |
* | Remove LAUNCHER category from VPN settings activity's intent filter.Hung-ying Tyan2009-06-141-3/+3
| | | | | | | | Also add preference summary to the VPN entry in the security settings.
* | Minor UI improvements and showing of unplugged duration.Amith Yamasani2009-06-123-66/+109
|/
* Make the Settings side of the date format settings more locale-aware.Eric Fischer2009-06-121-5/+15
| | | | | | | | | | | | | | | 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.
* Add VPN settings classes to Settings app.Hung-ying Tyan2009-06-1210-0/+1633
| | | | | | | | | | | | | | | | | | | | | | 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.
* Merge change 3973 into donutAndroid (Google) Code Review2009-06-111-3/+0
|\ | | | | | | | | * changes: Removing the summary texts for the Accessibility checkbox as requested by Raman.
| * Removing the summary texts for the Accessibility checkboxCharles Chen2009-06-111-3/+0
| | | | | | | | as requested by Raman.
* | Use the keystore service instead of the direct file access.Chung-yih Wang2009-06-122-99/+39
|/ | | | Revert back to my merged change 3710.
* Merge change 3814 into donutAndroid (Google) Code Review2009-06-111-1/+0
|\ | | | | | | | | * changes: Fix power widget bluetooth.
| * Fix power widget bluetooth.Ken Shirriff2009-06-101-1/+0
| | | | | | | | | | Starting wifi would also start bluetooth, due to a stray line. bug=1910079
* | Revert "Use the keystore service instead of the direct file acess."Chung-yih Wang2009-06-112-39/+99
| | | | | | | | This reverts commit 289705f3311932a45adef1710358f5e302115013.
* | Fix the bug of missing EAP setting in wpa_supplicant.conf when a new EAP is ↵Chung-yih Wang2009-06-111-1/+16
| | | | | | | | configured.
* | Use the keystore service instead of the direct file acess.Chung-yih Wang2009-06-112-99/+39
| | | | | | | | | | -- removed the temporal Keystore.java. -- added the empty passphrase for private key.
* | Merge change 3494 into donutAndroid (Google) Code Review2009-06-101-38/+3
|\ \ | | | | | | | | | | | | * changes: Use Phone.[get|set]SmscAddress() instead of OEMHookRaw.
| * | Use Phone.[get|set]SmscAddress() instead of OEMHookRaw.jsh2009-06-081-38/+3
| | |
* | | More details in the summary and details screens.Amith Yamasani2009-06-103-124/+487
| | | | | | | | | | | | | | | | | | | | | 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.
* | | Adding support for selecting the default language for Text-To-Speech in ↵Jean-Michel Trivi2009-06-101-6/+29
| |/ |/| | | | | Settings.
* | CompatibilityMode settingsJean-Michel Trivi2009-06-101-0/+11
| |
* | Adding Text-To-Speech default settings in the Settings application.Jean-Michel Trivi2009-06-091-0/+122
| |
* | Add EAP/802.1X configuration for WiFi Setting.Chung-yih Wang2009-06-094-60/+447
| | | | | | | | | | | | | | | | | | | | 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.
* | Implement the power-control widget.Ken Shirriff2009-06-081-0/+404
| | | | | | | | | | | | | | | | | | 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.
* | Listen for changes to location pProvider enabled settings.Mike Lockwood2009-06-081-0/+23
| | | | | | | | | | | | | | | | 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>
* | Remove Network Location" opt-in dialog from "Security and Settings"Mike Lockwood2009-06-071-41/+3
| | | | | | | | | | | | This dialog is being moved to the Network Location Provider itself. Signed-off-by: Mike Lockwood <lockwood@android.com>
* | Add detail page for Battery usage and track GPS and foreground CPU.Amith Yamasani2009-06-033-30/+335
|/ | | | | Show details such as Cpu time, Cpu foreground time, data sent/received, and GPS usage.
* Update some TODO comments.Wink Saville2009-05-292-14/+8
|
* Top level screen for App Fuel Gauge.Amith Yamasani2009-05-222-0/+464
| | | | | | | | | | | 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.
* Teleca 2b changes.Wink Saville2009-05-152-1/+8
|
* Accessibility feature - settings (replacing 704 and merging with the latest ↵svetoslavganov2009-05-141-0/+276
| | | | Donut)
* Merge change 1418 into donutAndroid (Google) Code Review2009-05-121-8/+16
|\ | | | | | | | | * changes: Show locale names in alphabetical order, in their own language.
| * Show locale names in alphabetical order, in their own language.Eric Fischer2009-05-111-8/+16
| | | | | | | | | | | | Bug 1776043: List the locales in alphabetical order. Bug 1703550: List the locales in their own languages instead of in the current language.
* | Add version number to Installed_App_DetailsSuchi Amalapurapu2009-05-111-102/+177
|/ | | | | | | | | 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
* Fix ANR caused by registering multiple listeners in DateTimeSettings.onCreate().Jim Miller2009-05-071-2/+3
|
* Always add the bt profile to profile list on the arrive of a connect eventMichael Chan2009-05-064-41/+58
| | | | | 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.
* Fix locale selection to never chose a lang-only locale.Robert Greenwalt2009-05-061-17/+22
| | | | | This avoids us using the non-standard lang-only locale when communicating off device. Fixes 1810133.
* Merge change 750 into donutAndroid (Google) Code Review2009-04-294-30/+33
|\ | | | | | | | | * changes: Fixed the Bluetooth On/Off Checkbox in settings so it is enabled/disable properly.
| * Fixed the Bluetooth On/Off Checkbox in settings so it is enabled/disable ↵Michael Chan2009-04-294-30/+33
| | | | | | | | | | | | | | | | | | 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.
* | Show Search settings in Settings app.Bjorn Bringert2009-04-271-0/+2
|/ | | | | | | The Settings app now shows a "Search settings" item, if there is an activity that handles the Search settings intent. This conditionally included settings is handled in the same way as the sync settings.
* Merge change 201 into donutAndroid (Google) Code Review2009-04-201-0/+8
|\ | | | | | | | | * changes: Dismiss the dialog in onDestroy so that it doesn't leak on orientation change or other transitions.
| * Dismiss the dialog in onDestroy so that it doesn't leak on orientation ↵Amith Yamasani2009-04-201-0/+8
| | | | | | | | change or other transitions.
* | Merge branch 'readonly-p4-donut' into donutEvan Millar2009-04-181-4/+4
|\ \ | |/ |/|
| * AI 146853: Add kernel wakelock data to batteryinfo dump.Evan Millar2009-04-181-4/+4
| | | | | | | | | | | | BUG=1755458 Automated import of CL 146853
* | Recalculate storage size in onStart rather than onCreateSuchi Amalapurapu2009-04-071-2/+8
|/ | | | | Refresh the size info by invoking PackageManager API in onStart so that the activity shows accurate storage information on being restarted.
* AI 144591: Fix ClassCastException in RadioInfo settings screen.Mike Lockwood2009-04-051-2/+1
| | | | | | BUG=1761604 Automated import of CL 144591