summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/DeviceAdminAdd.java
Commit message (Collapse)AuthorAgeFilesLines
* Fix issue #3324032: It is possible to create an app that cannot...Dianne Hackborn2011-03-021-0/+12
| | | | | | | | | | ...be uninstalled using device policy managers Don't allow app switches while we are bringing up the confirmation dialog. This prevents the app from pushing us out of the intended settings app flow. Change-Id: Iea1ff64c054452d307f91f349a815c0b244e9af5
* Tabletize Device administrator screen and fix the layout for DeviceAdminAdd.Amith Yamasani2011-01-241-11/+11
| | | | | | | | | | Bug: 3376986 Convert the DeviceAdminSettings screen to a fragment, remove fat titlebar. Convert the DeviceAdminAdd screen to layout nicely in the new holo DialogWhenLarge style. Change-Id: I20a9d16aed135a2178969dfff807075b0b79237c
* Implement BT settings functionality for new UI.Jake Hamby2010-12-091-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | - Removed context menu logic for long press (no longer used). - Converted device picker to run in its own Activity, using a dialog theme on large screen devices and full-screen on phones. - Removed unused resources. - Add device to "Paired devices" list when pairing is initiated by the remote device. - Return to Bluetooth settings pane after successfully pairing a new device from the "Find nearby device" pane. - Add support for renaming devices (TODO: persist the custom name and update the "bread crumb" in the action bar to the new device name). - Add support for incoming file transfer and auto connect checkboxes in DeviceProfilesSettings. - Show available and connected device profiles as icons instead of summary text. Available but disconnected profiles are drawn in gray. - Fixed bluetooth_notif_message to include the device name as a parameter instead of appending the name to the end of the localized string. - Changed some fields from private to package scope for more efficient access from inner classes. Bug: 3137982 Change-Id: Ic2d6ee5be60c9c5b3f3a8a58846d58efedfa5c93
* Allow Device Admins to refresh (re-request) activationAndy Stadler2010-12-091-17/+29
| | | | | | | * ACTION_ADD_DEVICE_ADMIN now works on already-added admins Bug: 3253179 Change-Id: I2090339c1fb61295e728bc61ca977ff6028a68dd
* Improve the add-device-admin layout.Chris Palmer2010-09-281-1/+41
| | | | | | | | | | Make it so that the app's explanation comes before the list of possible policies. This gives the app a chance to explain itself instead of having the explanation hidden below the fold. To avoid situations in which one bunch of text items can obscure the other, use an expandable/ellipsizable TextView with an indicator image. This resolves b/2992594. Change-Id: I0eb0d0c46bb4be2ec2e019d741915537e1fcc592
* API council: don't allow admin add from new task.Dianne Hackborn2010-03-261-0/+7
| | | | Change-Id: I45f75f8e2c43ba0dae51d37e104d18d0b1a2cdbf
* Fix issue #2477264: "Force Stop" in "Manage Applications" is not workingDianne Hackborn2010-03-031-0/+7
| | | | Also add cancel button when adding a device admin.
* Move DeviceAdmin APIs to android.app.admin.Dianne Hackborn2010-02-261-3/+3
|
* Fix issue #2396296: An admin is already setDianne Hackborn2010-02-221-2/+12
|
* Fix issue #2420412: API review: DeviceAdmin API changesDianne Hackborn2010-02-171-4/+6
|
* Fix device administrator "add" logicAndrew Stadler2010-02-051-17/+18
| | | | | | Due to a missing "else" the logic to activate a device administrator was immediately falling through into the logic to remove it. As a result, the add was immediately countermanded by a remove.
* Update to follow device policy changes.Dianne Hackborn2010-01-281-8/+34
|
* Update settings UI to support multiple device admins.Dianne Hackborn2010-01-271-29/+100
|
* More device admin work:Dianne Hackborn2010-01-271-0/+14
| | | | | - Show a warning before removing an admin, if desired. - Additional message that can be shown when adding an admin.
* Work on the device admin settings UI.Dianne Hackborn2010-01-261-0/+146
Improve the look of the UI, and add the confirmation screen for enabling an administrator. This uses the new framework APIs to show its description and policies it will control.