1 <resources> 2 <!-- Dynamic Grid --> 3 <integer name="config_dynamic_grid_max_long_edge_cell_count">6</integer> 4 <integer name="config_dynamic_grid_max_short_edge_cell_count">5</integer> 5 <integer name="config_dynamic_grid_min_edge_cell_count">3</integer> 6 <!-- Out of 100, the percent of space the overview bar should try and take vertically. --> 7 <integer name="config_dynamic_grid_overview_icon_zone_percentage">20</integer> 8 <!-- Out of 100, the percent to shrink the workspace during overview mode. --> 9 <integer name="config_dynamic_grid_overview_scale_percentage">80</integer> 10 11 <!-- Miscellaneous --> 12 <bool name="config_largeHeap">false</bool> 13 <bool name="is_tablet">false</bool> 14 <bool name="is_large_tablet">false</bool> 15 <bool name="allow_rotation">false</bool> 16 17 <!-- Max number of page indicators to show --> 18 <integer name="config_maxNumberOfPageIndicatorsToShow">21</integer> 19 20 <!-- App data backup and restore. To enble backup, register with an android backup service. 21 http://developer.android.com/guide/topics/data/backup.html#BackupKey --> 22 <bool name="enable_backup">false</bool> 23 24 <!-- DragController --> 25 <integer name="config_flingToDeleteMinVelocity">-1500</integer> 26 27 <!-- AllApps/Customize/AppsCustomize --> 28 <!-- The alpha of the AppsCustomize bg in spring loaded mode --> 29 <integer name="config_workspaceScrimAlpha">55</integer> 30 <integer name="config_workspaceUnshrinkTime">300</integer> 31 <integer name="config_overviewTransitionTime">250</integer> 32 33 <!-- Out of 100, the percent to shrink the workspace during spring loaded mode. --> 34 <integer name="config_workspaceSpringLoadShrinkPercentage">80</integer> 35 36 <!-- Fade/zoom in/out duration & scale in the AllApps transition. 37 Note: This should be less than the workspaceShrinkTime as they happen together. --> 38 <integer name="config_appsCustomizeRevealTime">220</integer> 39 <integer name="config_appsCustomizeZoomInTime">350</integer> 40 <integer name="config_appsCustomizeZoomOutTime">600</integer> 41 <integer name="config_appsCustomizeZoomScaleFactor">7</integer> 42 <integer name="config_appsCustomizeFadeInTime">250</integer> 43 <integer name="config_appsCustomizeFadeOutTime">200</integer> 44 <integer name="config_appsCustomizeWorkspaceShrinkTime">300</integer> 45 46 <integer name="config_appsCustomizeConcealTime">250</integer> 47 <integer name="config_appsCustomizeItemsAlphaStagger">60</integer> 48 49 <!-- This constant stores the ratio of the all apps button drawable which 50 is used for internal (baked-in) padding --> 51 <integer name="config_allAppsButtonPaddingPercent">17</integer> 52 53 <integer name="config_workspaceDefaultScreen">0</integer> 54 55 <!-- Tab transition animation duration --> 56 <integer name="config_tabTransitionDuration">250</integer> 57 58 <!-- The slope, in percent, of the drag movement needed to drag an item out of 59 AppsCustomize (y / x * 100%) --> 60 <integer name="config_appsCustomizeDragSlopeThreshold">150</integer> 61 62 <!-- Workspace --> 63 <!-- Whether or not the drop targets drop down as opposed to fade in --> 64 <bool name="config_useDropTargetDownTransition">false</bool> 65 66 <!-- The transition duration for the background of the drop targets --> 67 <integer name="config_dropTargetBgTransitionDuration">0</integer> 68 69 <!-- The duration (in ms) of the fade animation on the object outlines, used when 70 we are dragging objects around on the home screen. --> 71 <integer name="config_dragOutlineFadeTime">900</integer> 72 73 <!-- The alpha value at which to show the most recent drop visualization outline. --> 74 <integer name="config_dragOutlineMaxAlpha">128</integer> 75 76 <!-- Parameters controlling the animation for when an item is dropped on the home screen, 77 and it animates from its old position to the new one. --> 78 <integer name="config_dropAnimMinDuration">100</integer> 79 <integer name="config_dropAnimMaxDuration">500</integer> 80 81 <!-- The duration of the UserFolder opening and closing animation --> 82 <integer name="config_folderExpandDuration">120</integer> 83 <integer name="config_materialFolderExpandDuration">200</integer> 84 <integer name="config_materialFolderExpandStagger">60</integer> 85 86 <!-- The distance at which the animation should take the max duration --> 87 <integer name="config_dropAnimMaxDist">800</integer> 88 89 <!-- Properties controlling the workspace fade-out during dragging --> 90 <integer name="config_dragFadeOutAlpha">80</integer> 91 <integer name="config_dragFadeOutDuration">250</integer> 92 93 <!-- Camera distance for the overscroll effect --> 94 <integer name="config_cameraDistance">8000</integer> 95 96 <!-- Hotseat --> 97 <bool name="hotseat_transpose_layout_with_orientation">true</bool> 98 99 <!-- Memory debugging, including a memory dump icon --> 100 <bool name="debug_memory_enabled">false</bool> 101 102 <!-- Name of a subclass of com.android.launcher3.AppFilter used to 103 filter the activities shown in the launcher. Can be empty. --> 104 <string name="app_filter_class" translatable="false"></string> 105 106 <!-- Name of a subclass of com.android.launcher3.BuildInfo used to 107 get build information. Can be empty. --> 108 <string name="build_info_class" translatable="false"></string> 109 </resources> 110