• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    <!-- A string pointer to the original app name string. This allows derived projects to
13     easily override the app name without providing all translations -->
14    <string name="derived_app_name" translatable="false">@string/app_name</string>
15
16    <!-- Values for icon shape overrides. These should correspond to entries defined
17     in icon_shape_override_paths_names -->
18    <string-array translatable="false" name="icon_shape_override_paths_values">
19        <item></item>
20        <item>M50,0L100,0 100,100 0,100 0,0z</item>
21        <item>M50,0 C10,0 0,10 0,50 0,90 10,100 50,100 90,100 100,90 100,50 100,10 90,0 50,0 Z</item>
22        <item>M50 0A50 50,0,1,1,50 100A50 50,0,1,1,50 0</item>
23        <item>M50,0A50,50,0,0 1 100,50 L100,85 A15,15,0,0 1 85,100 L50,100 A50,50,0,0 1 50,0z</item>
24    </string-array>
25
26    <string-array translatable="false" name="icon_shape_override_paths_names">
27        <!-- Option to not change the icon shape on home screen. [CHAR LIMIT=50] -->
28        <item>@string/icon_shape_system_default</item>
29        <item>Square</item>
30        <item>Squircle</item>
31        <item>Circle</item>
32        <item>Teardrop</item>
33    </string-array>
34<!-- DragController -->
35    <item type="id" name="drag_event_parity" />
36
37<!-- AllApps & Launcher transitions -->
38    <!-- The alpha of the AppsCustomize bg in spring loaded mode -->
39    <integer name="config_workspaceScrimAlpha">30</integer>
40    <integer name="config_allAppsTransitionTime">100</integer>
41    <integer name="config_overviewTransitionTime">250</integer>
42
43    <!-- Out of 100, the percent to shrink the workspace during spring loaded mode. -->
44    <integer name="config_workspaceSpringLoadShrinkPercentage">90</integer>
45    <!-- Out of 100, the percent to shrink the workspace during overview mode. -->
46    <integer name="config_workspaceOverviewShrinkPercentage">70</integer>
47
48    <!-- Fade/zoom in/out duration & scale in a Launcher overlay transition.
49         Note: This should be less than the config_overlayTransitionTime as they happen together. -->
50    <integer name="config_overlayRevealTime">220</integer>
51    <integer name="config_overlaySlideRevealTime">320</integer>
52    <integer name="config_overlayTransitionTime">300</integer>
53    <integer name="config_overlayItemsAlphaStagger">60</integer>
54
55    <!-- This constant stores the ratio of the all apps button drawable which
56         is used for internal (baked-in) padding -->
57    <integer name="config_allAppsButtonPaddingPercent">17</integer>
58
59    <!-- The duration of the animation from search hint to text entry -->
60    <integer name="config_searchHintAnimationDuration">50</integer>
61
62<!-- Workspace -->
63    <!-- The duration (in ms) of the fade animation on the object outlines, used when
64         we are dragging objects around on the home screen. -->
65    <integer name="config_dragOutlineFadeTime">900</integer>
66
67    <!-- The alpha value at which to show the most recent drop visualization outline. -->
68    <integer name="config_dragOutlineMaxAlpha">128</integer>
69
70    <!-- Parameters controlling the animation for when an item is dropped on the home screen,
71         and it animates from its old position to the new one. -->
72    <integer name="config_dropAnimMinDuration">100</integer>
73    <integer name="config_dropAnimMaxDuration">500</integer>
74
75    <!-- The duration of the UserFolder opening and closing animation -->
76    <integer name="config_folderExpandDuration">120</integer>
77    <integer name="config_materialFolderExpandDuration">200</integer>
78    <integer name="config_materialFolderExpandStagger">60</integer>
79
80    <!-- The distance at which the animation should take the max duration -->
81    <integer name="config_dropAnimMaxDist">800</integer>
82
83    <!-- The duration of the caret animation -->
84    <integer name="config_caretAnimationDuration">200</integer>
85
86<!-- Hotseat -->
87    <bool name="hotseat_transpose_layout_with_orientation">true</bool>
88
89    <!-- Name of a subclass of com.android.launcher3.AppFilter used to
90         filter the activities shown in the launcher. Can be empty. -->
91    <string name="app_filter_class" translatable="false"></string>
92
93    <!-- Name of an icon provider class. -->
94    <string name="icon_provider_class" translatable="false"></string>
95
96    <!-- Name of a drawable factory class. -->
97    <string name="drawable_factory_class" translatable="false"></string>
98
99    <!-- Name of a user event dispatcher class. -->
100    <string name="user_event_dispatcher_class" translatable="false"></string>
101
102    <!-- Package name of the default wallpaper picker. -->
103    <string name="wallpaper_picker_package" translatable="false"></string>
104
105    <!-- View ID to use for QSB widget -->
106    <item type="id" name="qsb_widget" />
107
108    <!-- View ID to use for blocked area on the first screen -->
109    <item type="id" name="workspace_blocked_row" />
110
111    <!-- View ID used by cell layout to jail its content -->
112    <item type="id" name="cell_layout_jail_id" />
113
114    <!-- View ID used by PreviewImageView to cache its instance -->
115    <item type="id" name="preview_image_id" />
116
117<!-- Popup items -->
118    <integer name="config_deepShortcutOpenDuration">220</integer>
119    <integer name="config_deepShortcutArrowOpenDuration">80</integer>
120    <integer name="config_deepShortcutOpenStagger">40</integer>
121    <integer name="config_deepShortcutCloseDuration">150</integer>
122    <integer name="config_deepShortcutCloseStagger">20</integer>
123    <integer name="config_removeNotificationViewDuration">300</integer>
124
125<!-- Accessibility actions -->
126    <item type="id" name="action_remove" />
127    <item type="id" name="action_uninstall" />
128    <item type="id" name="action_info" />
129    <item type="id" name="action_add_to_workspace" />
130    <item type="id" name="action_move" />
131    <item type="id" name="action_move_to_workspace" />
132    <item type="id" name="action_move_screen_backwards" />
133    <item type="id" name="action_move_screen_forwards" />
134    <item type="id" name="action_resize" />
135    <item type="id" name="action_deep_shortcuts" />
136    <item type="id" name="action_dismiss_notification" />
137</resources>
138