summaryrefslogtreecommitdiffstats
path: root/res/values
Commit message (Collapse)AuthorAgeFilesLines
* Creating generic Workspace/CellLayout for paged views in Launcher.Winson Chung2010-08-161-0/+9
| | | | | | | | Adding SimpleWorkspace, SimpleCellLayout and an AllApps implementation of the SimpleWorkspace. Making SimpleWorkspace support content with smaller dimensions than the workspace dimensions itself. Temporary change to AllApps tabs styling until we get new assets for tabs in general. Change-Id: Ibe3c56603223853d232816b6695e4ddd757857ba
* Fix incorrect offset in drag feedback, and other minor stuff.Patrick Dubroy2010-08-041-7/+0
| | | | - moved some dimens to -xlarge - enlarge AllApps so that it's not clipped
* improved comments in strings fileMichael Jurka2010-08-041-0/+10
| | | | - also added/updated some copyright notices
* Cleaning up grid size specification in LauncherAdam Cohen2010-08-041-12/+8
| | | | | | | | | | | | This commit eliminates the notion of in-place rotations and a bunch of associated complexities (including the notion of canonical coordinates). Further, the number of x and y cells per workspace screen is now being stored in a single location in the XML definition of Workspace. This fixes a couple bugs where incorrect values were being used. Finally, eliminated the notion of "shortAxis" and "longAxis" in terms of padding and cell count. These have been translated to corresponding x and y axis values. Change-Id: I30cfed66f82d739355b3f01730b28b6c0437989c
* Make tabs in all apps actually filter the list of apps.Patrick Dubroy2010-07-291-0/+6
|
* Improved support for workspace screen thumbnailsMichael Jurka2010-07-281-0/+3
| | | | | | | - Shrinking workspace view in All Apps - Added vertical margin for workspace screen thumnbnails - Fixed bugs in a few of the Launcher state transitions (e.g. customization to all apps) Change-Id: I9ad1c8861585d78fdb2e3bc986a614526b3cfe5f
* Home screen now shrinks while customizingMichael Jurka2010-07-271-0/+4
| | | | | | | - added a shrink/fade animation on home screen when going into customization mode - made items in the customization drawer larger Change-Id: Iddbaf14aa5b1504fe94966971a1ab95c00f24331
* Improving home screen customizationMichael Jurka2010-07-091-0/+5
| | | | | | | | | | - Created a drawer with tabs for widgets, folders, shortcuts, wallpapers (wallpapers are currently not implemented) - Tapping outside the drawer dismisses it - Moved the all apps icon to the upper right of the screen - Adding a toast that says "No more space on screen" when dragging a widget to a full screen - Fixed bug where you could stack two equal-sized widgets on top of each other on the homescreen (exposed by the new ability to drag widgets onto the home screen) Change-Id: I03b65ce54a85d24328c94e0c06e249571de449ee
* Allow for NxM layout and in-place rotation of items on homescreen.Winson Chung2010-06-301-0/+4
| | | | | | Currently, rotation is disabled as designs are still in flux, but the NxM grid is enabled (8x4). Change-Id: I0026f88c674719e3d67de6d6d481d2d4cd606362
* Make 2D All Apps work better in landscape and on hdpi.Daniel Sandler2010-06-031-0/+4
| | | | | | | | | | | | | | | * Correct the density (or, rather, remove the density) of the icons in the cache to ensure they're drawn px-for-px. * Create a new landscape layout for 2DAA that aligns things properly (viz: Home icon at right, padding tuned, 6 columns). * Performance improvement: Make the app grid, icons, and home icon all opaque (by setting a black background) and move the home icon so it doesn't overlap the grid. Change-Id: I961323e9e39cb122cdc694853706e7fcdd10142f
* Increase hot rectangle of trash can.Daniel Sandler2010-04-281-0/+6
| | | | | | | | | The drop region is now 70dip^2. This means it invisibly overlaps nearby icons ever so slightly---not enough to prevent icons being properly dropped on the workspace. Bug: 2623734 Change-Id: I945160ef6bdfc0a4ac3cf9db57d440bad424dfc4
* Hotseats: better strategy for finding the default browser.Daniel Sandler2010-04-282-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To do this, we invoke resolveActivity to see what activity would result from viewing an arbitrary (but valid) URL. If there's just one installed, or there are multiple and the user has chosen a default handler for http:, we take that component and launch it with CATEGORY_HOME (so as not to upset the URL in the frontmost window/tab/what-have-you). We also use this information to extract the localized name of the app, which is then installed into the hotseat as the contentDescription (for accessibility). If there's no default and multiple options are availble, we'll get the activity chooser instead. In this case, we just fire off that chooser and let the user pick an app (possibly setting a default along the way). Because the default may change, we reload all this hotseat information every time one of the hotseats is tapped. Another side-effect of this approach is that until there exists a default browser, the original URL will be sent to the activity the user chooses from the ResolveActivity. So we need a sensible default URL here; one can be found in R.string.default_browser_url (similar to Browser's R.string.homepage_base). This change also moves the hotseat intents and icons into arrays.xml for easier configuration. Change-Id: I06268df8b59e0f41f1f8b0e47f823db4c44ec761
* New Launcher feature: "hotseat" icons.Daniel Sandler2010-04-232-0/+29
| | | | | | | | | | | | | | | | | | | | The hotseats are permanent slots on either side of the AllApps button. Their functions are: LEFT/BOTTOM: Phone Launched via the hardcoded class name com.android.contacts/.ContactsLaunchActivity. RIGHT/TOP: Browser Launched by querying to see which application is the default for URLs, then starting that activity directly. In the future, it would be ideal to allow an application with permission to access LauncherProvider to customize these (icons, contentDescriptions, and Intents). Bug: 2559083 Change-Id: I56f6e745f8574aa17e28feaa9d2118fb4a715cd4
* Move batch size to a resource.Daniel Sandler2010-04-191-1/+2
| | | | | | | | This way we can figure out how many apps to send to the grid at a time even if the grid hasn't been instantiated yet. Bug: 2599979 Change-Id: I7960fe1adae6976555334422335f3a4b28d0675e
* More Launcher performance improvements.Daniel Sandler2010-04-161-0/+1
| | | | | | | | | | | | | | * Removed another redundant sort * Correctly set the thread priority to BACKGROUND for the all apps loading step. * Moved batch delay to a resource * Reduced delay between loading batches of apps to 100ms (we really just want to sleep a tiny bit between batches to give the UI time to react) Bug: 2562420 Bug: 2599979 (related) Change-Id: I1ae72a68c1a47377a9eb62827fe7666bfc50caa5
* Merge "Slow down 2D All Apps fadeout." into froyoDaniel Sandler2010-04-061-1/+1
|\
| * Slow down 2D All Apps fadeout.Daniel Sandler2010-04-021-1/+1
| | | | | | | | Change-Id: Ifd8564bca26265540589a48ea281e8ce9fa1001e
* | Last minute hack to deliver touch events to widget in landscape mode.Romain Guy2010-04-051-0/+4
|/ | | | | | | | | | | | Bug #2562729 In landscape, the left and right dots buttons are 93dip wide; this makes them overlap with widgets at the bottom of the screen. The dots do not need to be that wide but we chose this size to make it easier to tap them in portrait. To avoid issues in landscape, this change introduces a new type of ImageView that can ignore touch events in a certain zone. This was easier and cheaper than re-cutting 36+ assets. Change-Id: Id261fba41a43dede943e72060e39e87658e4b0df
* bug 2480004 - add some descriptions for the string in homeJoe Onorato2010-03-111-0/+9
| | | | Change-Id: Ie01900dcb6fd6381d18dcfa80bddb7bfdff19b13
* Allow shared user id and process to be set via overlays.Dianne Hackborn2010-03-091-0/+7
| | | | | | | | | | | | This fiddles the manifest to allow the app's shared user id and process to be changed at build time via resource overlays, so we can build launcher to run in the acore process for low-end devices. Also switches the cert of launcher back to shared, to allow for this. (Note this only really matters if the shared user id is set, otherwise launcher will still get its own uid.) Change-Id: I0bd0a06e1442c4bfe5ceb2d438cb58f29d911578
* Speed up 2D AllApps fade-in.Daniel Sandler2010-03-081-1/+1
| | | | Change-Id: I466c97cb63687ec3dab5109a8e77445e78e8b3ee
* Introduce 2D All Apps and other support for sapphire-class devices.Daniel Sandler2010-03-031-0/+4
| | | | | | | | | | | | | | | | AllAppsView is now the 2D, GridView-based version (very similar to classic Launcher); AllApps3D is the RenderScript/Rollo implementation. TODO: - some mdpi assets are not in fact mdpi - related to above: static wallpapers not working yet - add dynamic selection of 2D/3D AA; currently you must choose one at build time by picking the appropriate class in all_apps.xml (see separate CL for sapphire overlay that does this) Change-Id: I253d98404ea8a329a4049d2e48edd2e5129fa6ba
* Fix texture generation issue on Home.Romain Guy2010-02-041-2/+1
|
* Deprecate fill_parent and introduce match_parent.Romain Guy2010-01-081-2/+2
| | | | Bug: #2361749.
* Get rid of the built-in search widget in Launcher2Bjorn Bringert2009-12-092-11/+0
| | | | | | Uses the widget from packages/apps/QuickSearchBox instead. Change-Id: I85d64defe155c0cad97fafef6a3db62c6cab504a
* Clean up name of static wallpapers.Daniel Sandler2009-12-021-1/+1
| | | | | Change-Id: I7df54f9d13f9808329515eb7b317b21c5ba77afb http://b/2261747
* Fix 2241848 - 3D apps folder does not send accessibility eventsJoe Onorato2009-11-111-0/+6
| | | | | | It's now sending them. The beeping and vibrating accessibility things work, but we only have prebuilts for the speech one and it's not saying anything and I can't debug it, so this will have to do.
* Add previews on long press on the indicators.Romain Guy2009-11-092-1/+6
| | | | Change-Id: I6349d55345255caacc1381e83459544f8b8e085c
* More capabilities for default home configurationMike Cleron2009-10-301-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | Added support for adding appwidgets beyond clock and search to the intital configuration. Also pulled in a previous change in Launcher that allowed http shortcuts. New syntax looks like this in default_workspace.xml: <appwidget launcher:packageName="com.android.settings" launcher:className="com.android.settings.widget.SettingsAppWidgetProvider" launcher:screen="0" launcher:x="0" launcher:y="2" launcher:spanX="4" launcher:spanY="1" /> <shortcut launcher:packageName="com.android.settings" launcher:icon="@drawable/ic_launcher_appwidget" launcher:title="@string/group_folder" launcher:uri="http://www.nytimes.com" launcher:screen="2" launcher:x="2" launcher:y="2" />
* Restore missing string that was still referenced from code.Eric Fischer2009-10-211-0/+2
| | | | Approver: jerryw
* Remove live wallpaper picker from Launcher2.Romain Guy2009-10-161-10/+0
| | | | Change-Id: I2c48f3624128276c3460939960168163d3c74c08
* Add high dpi wallpapers.Joe Onorato2009-09-211-36/+0
|
* Armor string format tokens with translation placeholders.Eric Fischer2009-09-211-3/+3
| | | | Change-Id: Ibe4d4fea7caff285f67382cc17f2f9261cf1f92c
* New hdpi wallpapers.Romain Guy2009-09-101-14/+15
| | | | Change-Id: I18ec902c32feaefd68bec176d9250e6bf535dc48
* Add "Configure..." to wallpaper menu for configurable live wallpapers.Dianne Hackborn2009-09-071-0/+2
| | | | Change-Id: I41a2e68192acfed60cce344ac1e0cd886a54f348
* Add the ability to replace all wallpapers with overlay resources.Romain Guy2009-09-021-0/+35
| | | | Change-Id: I516c0972c04dc7e07801a2e3c297e1d0f0f96f9a
* Add the all apps button.Joe Onorato2009-08-311-0/+1
|
* Implement previews in the wallpaper picker.Dianne Hackborn2009-08-201-0/+5
| | | | Note that the UI is ugly ugly ugly, but previews are actually working.
* Add live wallpapers picker to Launcher2. This is temporary.Romain Guy2009-08-131-0/+4
| | | | | This change requires changing the signature and shared user id of Launcher2, we will have to revert this once we move the wallpapers picker back to Settings.
* Remove live wallpaperRomain Guy2009-08-121-6/+0
|
* Add Grass live wallpaper to Launcher2. It's ALIVE!Romain Guy2009-08-111-0/+6
|
* Enable live wallpaper in Launcher2Romain Guy2009-08-101-2/+1
|
* Move the drag thing into its own window that goes around on top of ↵Joe Onorato2009-08-061-1/+1
| | | | everything else.
* no texture for the all apps grid.Joe Onorato2009-07-311-7/+0
|
* Launcher2 compiles.Joe Onorato2009-07-301-1/+1
|
* Change "Shortcut <> is installed" to "created"Leon Scroggins2009-07-221-1/+1
| | | | See http://b/issue?id=1861557
* Remove gestures from Home.Romain Guy2009-07-211-40/+0
|
* New gestures UI.Romain Guy2009-07-162-6/+2
|
* Change name for home's uid to something more generic.Dianne Hackborn2009-06-241-0/+2
| | | | | There are lots of things running under home's uid, so give it a more generic name. Home no longer to blame for all the world's ills!
* Fix the buildRomain Guy2009-06-241-1/+1
|