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 <!-- DragController --> 21 <integer name="config_flingToDeleteMinVelocity">-1500</integer> 22 23 <!-- AllApps/Customize/AppsCustomize --> 24 <!-- The alpha of the AppsCustomize bg in spring loaded mode --> 25 <integer name="config_appsCustomizeSpringLoadedBgAlpha">65</integer> 26 <integer name="config_workspaceUnshrinkTime">300</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 32 <!-- Fade/zoom in/out duration & scale in the AllApps transition. 33 Note: This should be less than the workspaceShrinkTime as they happen together. --> 34 <integer name="config_appsCustomizeZoomInTime">350</integer> 35 <integer name="config_appsCustomizeZoomOutTime">600</integer> 36 <integer name="config_appsCustomizeZoomScaleFactor">7</integer> 37 <integer name="config_appsCustomizeFadeInTime">250</integer> 38 <integer name="config_appsCustomizeFadeOutTime">200</integer> 39 <integer name="config_appsCustomizeWorkspaceShrinkTime">300</integer> 40 <integer name="config_appsCustomizeWorkspaceAnimationStagger">40</integer> 41 <integer name="config_workspaceAppsCustomizeAnimationStagger">100</integer> 42 43 <integer name="config_workspaceDefaultScreen">0</integer> 44 45 <!-- Tab transition animation duration --> 46 <integer name="config_tabTransitionDuration">250</integer> 47 48 <!-- The slope, in percent, of the drag movement needed to drag an item out of 49 AppsCustomize (y / x * 100%) --> 50 <integer name="config_appsCustomizeDragSlopeThreshold">150</integer> 51 52 <!-- Workspace --> 53 <!-- Whether or not the drop targets drop down as opposed to fade in --> 54 <bool name="config_useDropTargetDownTransition">false</bool> 55 56 <!-- The transition duration for the background of the drop targets --> 57 <integer name="config_dropTargetBgTransitionDuration">0</integer> 58 59 <!-- The duration (in ms) of the fade animation on the object outlines, used when 60 we are dragging objects around on the home screen. --> 61 <integer name="config_dragOutlineFadeTime">900</integer> 62 63 <!-- The alpha value at which to show the most recent drop visualization outline. --> 64 <integer name="config_dragOutlineMaxAlpha">128</integer> 65 66 <!-- Parameters controlling the animation for when an item is dropped on the home screen, 67 and it animates from its old position to the new one. --> 68 <integer name="config_dropAnimMinDuration">100</integer> 69 <integer name="config_dropAnimMaxDuration">500</integer> 70 71 <!-- The duration of the UserFolder opening and closing animation --> 72 <integer name="config_folderAnimDuration">120</integer> 73 74 <!-- The distance at which the animation should take the max duration --> 75 <integer name="config_dropAnimMaxDist">800</integer> 76 77 <!-- Properties controlling the workspace fade-out during dragging --> 78 <integer name="config_dragFadeOutAlpha">80</integer> 79 <integer name="config_dragFadeOutDuration">250</integer> 80 81 <!-- Camera distance for the overscroll effect --> 82 <integer name="config_cameraDistance">8000</integer> 83 84 <!-- Whether or not to use custom clings if a custom workspace layout is passed in --> 85 <bool name="config_useCustomClings">false</bool> 86 87 <!-- Hotseat --> 88 <bool name="hotseat_transpose_layout_with_orientation">true</bool> 89 90 <!-- Memory debugging, including a memory dump icon --> 91 <bool name="debug_memory_enabled">false</bool> 92 93 <!-- Name of a subclass of com.android.launcher3.AppFilter used to 94 filter the activities shown in the launcher. Can be empty. --> 95 <string name="app_filter_class" translatable="false"></string> 96 97 <!-- Name of a subclass of com.android.launcher3.BuildInfo used to 98 get build information. Can be empty. --> 99 <string name="build_info_class" translatable="false"></string> 100 </resources> 101