1<resources>
2    <bool name="config_largeHeap">false</bool>
3    <bool name="is_large_screen">false</bool>
4    <bool name="allow_rotation">false</bool>
5
6<!-- DragController -->
7    <integer name="config_flingToDeleteMinVelocity">-1500</integer>
8
9<!-- AllApps/Customize/AppsCustomize -->
10    <!-- The alpha of the AppsCustomize bg in spring loaded mode -->
11    <integer name="config_appsCustomizeSpringLoadedBgAlpha">45</integer>
12    <integer name="config_workspaceUnshrinkTime">300</integer>
13    <!-- Out of 100, the percent to shrink the workspace during spring loaded mode. -->
14    <integer name="config_workspaceSpringLoadShrinkPercentage">80</integer>
15
16    <!-- Fade/zoom in/out duration & scale in the AllApps transition.
17         Note: This should be less than the workspaceShrinkTime as they happen together. -->
18    <integer name="config_appsCustomizeZoomInTime">350</integer>
19    <integer name="config_appsCustomizeZoomOutTime">600</integer>
20    <integer name="config_appsCustomizeZoomScaleFactor">7</integer>
21    <integer name="config_appsCustomizeFadeInTime">250</integer>
22    <integer name="config_appsCustomizeFadeOutTime">200</integer>
23    <integer name="config_appsCustomizeWorkspaceShrinkTime">300</integer>
24    <integer name="config_appsCustomizeWorkspaceAnimationStagger">40</integer>
25    <integer name="config_workspaceAppsCustomizeAnimationStagger">100</integer>
26
27    <!-- Tab transition animation duration -->
28    <integer name="config_tabTransitionDuration">250</integer>
29
30    <!-- The slope, in percent, of the drag movement needed to drag an item out of
31         AppsCustomize (y / x * 100%)  -->
32    <integer name="config_appsCustomizeDragSlopeThreshold">150</integer>
33
34    <!-- Batch loading for loading in LauncherModel -->
35    <integer name="config_allAppsBatchLoadDelay">0</integer>
36    <integer name="config_allAppsBatchSize">0</integer>
37
38<!-- Workspace -->
39    <!-- Whether or not the drop targets drop down as opposed to fade in -->
40    <bool name="config_useDropTargetDownTransition">true</bool>
41    <!-- Whether or not to fade the side pages -->
42    <bool name="config_workspaceFadeAdjacentScreens">false</bool>
43
44    <!-- The transition duration for the background of the drop targets -->
45    <integer name="config_dropTargetBgTransitionDuration">0</integer>
46
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_folderAnimDuration">120</integer>
61
62    <!-- The distance at which the animation should take the max duration -->
63    <integer name="config_dropAnimMaxDist">800</integer>
64
65    <!-- Properties controlling the workspace fade-out during dragging -->
66    <integer name="config_dragFadeOutAlpha">80</integer>
67    <integer name="config_dragFadeOutDuration">250</integer>
68
69    <!-- Camera distance for the overscroll effect -->
70    <integer name="config_cameraDistance">6500</integer>
71
72    <!-- Folder max bounds and max number of items. Note: folder_max_count_x * folder_max_count_y
73         >= folder_max_num_items. When these are set to -1, they are automatically determined. -->
74    <integer name="folder_max_count_x">4</integer>
75    <integer name="folder_max_count_y">4</integer>
76    <integer name="folder_max_num_items">16</integer>
77
78    <integer name="cell_count_x">4</integer>
79    <integer name="cell_count_y">4</integer>
80
81    <!-- Whether or not to use custom clings if a custom workspace layout is passed in -->
82    <bool name="config_useCustomClings">false</bool>
83
84<!-- Hotseat -->
85    <bool name="hotseat_transpose_layout_with_orientation">true</bool>
86    <integer name="hotseat_cell_count">5</integer>
87    <integer name="hotseat_all_apps_index">2</integer>
88    <!-- must be between 0 and 100 -->
89    <integer name="hotseat_item_scale_percentage">100</integer>
90</resources>
91