1 <resources> 2 <!-- Dynamic Grid --> 3 <!-- Out of 100, the percent of space the overview bar should try and take vertically. --> 4 <integer name="config_dynamic_grid_overview_icon_zone_percentage">20</integer> 5 6 <!-- Miscellaneous --> 7 <bool name="config_largeHeap">false</bool> 8 <bool name="is_tablet">false</bool> 9 <bool name="is_large_tablet">false</bool> 10 <bool name="allow_rotation">false</bool> 11 12 <!-- Max number of page indicators to show --> 13 <integer name="config_maxNumberOfPageIndicatorsToShow">21</integer> 14 15 <!-- App data backup and restore. To enble backup, register with an android backup service. 16 http://developer.android.com/guide/topics/data/backup.html#BackupKey --> 17 <bool name="enable_backup">false</bool> 18 19 <!-- DragController --> 20 <integer name="config_flingToDeleteMinVelocity">-1500</integer> 21 <item type="id" name="drag_event_parity" /> 22 23 <!-- AllApps & Launcher transitions --> 24 <!-- The alpha of the AppsCustomize bg in spring loaded mode --> 25 <integer name="config_workspaceScrimAlpha">55</integer> 26 <integer name="config_allAppsTransitionTime">100</integer> 27 <integer name="config_overviewTransitionTime">250</integer> 28 29 <!-- Out of 100, the percent to shrink the workspace during spring loaded mode. --> 30 <integer name="config_workspaceSpringLoadShrinkPercentage">80</integer> 31 <!-- Out of 100, the percent to shrink the workspace during overview mode. --> 32 <integer name="config_workspaceOverviewShrinkPercentage">70</integer> 33 34 <!-- Fade/zoom in/out duration & scale in a Launcher overlay transition. 35 Note: This should be less than the config_overlayTransitionTime as they happen together. --> 36 <integer name="config_overlayRevealTime">220</integer> 37 <integer name="config_overlayTransitionTime">300</integer> 38 <integer name="config_overlayItemsAlphaStagger">60</integer> 39 40 <!-- This constant stores the ratio of the all apps button drawable which 41 is used for internal (baked-in) padding --> 42 <integer name="config_allAppsButtonPaddingPercent">17</integer> 43 44 <integer name="config_workspaceDefaultScreen">0</integer> 45 46 <!-- Workspace --> 47 <!-- The duration (in ms) of the fade animation on the object outlines, used when 48 we are dragging objects around on the home screen. --> 49 <integer name="config_dragOutlineFadeTime">900</integer> 50 51 <!-- The alpha value at which to show the most recent drop visualization outline. --> 52 <integer name="config_dragOutlineMaxAlpha">128</integer> 53 54 <!-- Parameters controlling the animation for when an item is dropped on the home screen, 55 and it animates from its old position to the new one. --> 56 <integer name="config_dropAnimMinDuration">100</integer> 57 <integer name="config_dropAnimMaxDuration">500</integer> 58 59 <!-- The duration of the UserFolder opening and closing animation --> 60 <integer name="config_folderExpandDuration">120</integer> 61 <integer name="config_materialFolderExpandDuration">200</integer> 62 <integer name="config_materialFolderExpandStagger">60</integer> 63 64 <!-- The distance at which the animation should take the max duration --> 65 <integer name="config_dropAnimMaxDist">800</integer> 66 67 <!-- Hotseat --> 68 <bool name="hotseat_transpose_layout_with_orientation">true</bool> 69 70 <!-- Name of a subclass of com.android.launcher3.AppFilter used to 71 filter the activities shown in the launcher. Can be empty. --> 72 <string name="app_filter_class" translatable="false"></string> 73 74 <!-- Name of a packages that com.android.launcher3.action.LAUNCH 75 should be targeting. Can be empty. --> 76 <string-array name="launch_broadcast_targets" translatable="false"></string-array> 77 78 <!-- View ID to use for QSB widget --> 79 <item type="id" name="qsb_widget" /> 80 81 <!-- View ID used by cell layout to jail its content --> 82 <item type="id" name="cell_layout_jail_id" /> 83 84 <!-- Accessibility actions --> 85 <item type="id" name="action_remove" /> 86 <item type="id" name="action_uninstall" /> 87 <item type="id" name="action_info" /> 88 <item type="id" name="action_add_to_workspace" /> 89 <item type="id" name="action_move" /> 90 <item type="id" name="action_move_to_workspace" /> 91 <item type="id" name="action_move_screen_backwards" /> 92 <item type="id" name="action_move_screen_forwards" /> 93 <item type="id" name="action_resize" /> 94 </resources> 95