blob: f462b9c53476eb2b39530cb06d11ccf0dd7fa81f [file] [log] [blame]
Daniel Sandler388f6792010-03-02 14:08:08 -05001<resources>
Winson Chung67ca7e42013-10-31 16:53:19 -07002<!-- Miscellaneous -->
Adam Cohen56901eb2011-07-25 14:54:22 -07003 <bool name="config_largeHeap">false</bool>
Winson Chung5f8afe62013-08-12 16:19:28 -07004 <bool name="is_tablet">false</bool>
5 <bool name="is_large_tablet">false</bool>
Adam Cohencb3f98e2012-04-24 14:24:35 -07006 <bool name="allow_rotation">false</bool>
Winson Chunga62e9fd2011-07-11 15:20:48 -07007
Mario Bertschlerf30c63c2017-08-21 12:32:42 -07008 <integer name="extracted_color_gradient_alpha">153</integer>
Sunny Goyal6d1e9a12017-07-27 10:21:50 -07009
Sunny Goyal112ce422016-08-22 16:45:29 -070010 <!-- A string pointer to the original app name string. This allows derived projects to
11 easily override the app name without providing all translations -->
12 <string name="derived_app_name" translatable="false">@string/app_name</string>
13
Sunny Goyal161f96b2017-05-07 11:56:00 -070014 <!-- String representing the intent for search on the apps market. To specify a query, add
15 q=<query> to the data to the intent -->
16 <string name="market_search_intent" translatable="false">market://search?c=apps</string>
17
Jon Mirandac56e3ff2017-08-23 12:13:24 -070018 <!-- String representing the intent to delete a package.-->
19 <string name="delete_package_intent" translatable="false">#Intent;action=android.intent.action.DELETE;launchFlags=0x10800000;end</string>
20
Sunny Goyal7f920b82018-06-27 15:47:49 -070021 <!-- String representing the fragment class for settings activity.-->
22 <string name="settings_fragment_name" translatable="false">com.android.launcher3.SettingsActivity$LauncherSettingsFragment</string>
23
Sunny Goyalca187462017-03-31 20:09:34 -070024 <!-- Values for icon shape overrides. These should correspond to entries defined
25 in icon_shape_override_paths_names -->
Sunny Goyal9d9dbcb2017-05-25 16:43:19 +000026 <string-array translatable="false" name="icon_shape_override_paths_values">
Sunny Goyalca187462017-03-31 20:09:34 -070027 <item></item>
Sunny Goyal9d9dbcb2017-05-25 16:43:19 +000028 <item>M50,0L100,0 100,100 0,100 0,0z</item>
29 <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>
30 <item>M50 0A50 50,0,1,1,50 100A50 50,0,1,1,50 0</item>
31 <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>
Sunny Goyalca187462017-03-31 20:09:34 -070032 </string-array>
33
Sunny Goyal9d9dbcb2017-05-25 16:43:19 +000034 <string-array translatable="false" name="icon_shape_override_paths_names">
Sunny Goyalca187462017-03-31 20:09:34 -070035 <!-- Option to not change the icon shape on home screen. [CHAR LIMIT=50] -->
Sunny Goyale7539e92017-05-15 12:15:57 -070036 <item>@string/icon_shape_system_default</item>
Sunny Goyal9d9dbcb2017-05-25 16:43:19 +000037 <item>@string/icon_shape_square</item>
38 <item>@string/icon_shape_squircle</item>
39 <item>@string/icon_shape_circle</item>
40 <item>@string/icon_shape_teardrop</item>
Sunny Goyalca187462017-03-31 20:09:34 -070041 </string-array>
Sunny Goyal9d9dbcb2017-05-25 16:43:19 +000042
Winson Chung6e1bdaf2012-05-29 17:03:45 -070043<!-- DragController -->
Sunny Goyal58376922015-05-26 18:56:52 -070044 <item type="id" name="drag_event_parity" />
Winson Chung6e1bdaf2012-05-29 17:03:45 -070045
Winson Chung5f4e0fd2015-05-22 11:12:27 -070046<!-- AllApps & Launcher transitions -->
Winson Chungb26f3d62011-06-02 10:49:29 -070047 <!-- Out of 100, the percent to shrink the workspace during spring loaded mode. -->
Tony Wickhame0c33232016-02-08 11:37:04 -080048 <integer name="config_workspaceSpringLoadShrinkPercentage">90</integer>
Winson Chung785d2eb2011-04-14 16:08:02 -070049
Sunny Goyal50245032016-07-13 14:24:18 -070050 <!-- The duration of the animation from search hint to text entry -->
51 <integer name="config_searchHintAnimationDuration">50</integer>
52
Jon Miranda5c83e7c2017-06-06 15:41:21 -070053 <!-- View tag key used to store SpringAnimation data. -->
54 <item type="id" name="spring_animation_tag" />
55
Winson Chung785d2eb2011-04-14 16:08:02 -070056<!-- Workspace -->
Patrick Dubroy046e7eb2010-10-06 12:14:43 -070057 <!-- The duration (in ms) of the fade animation on the object outlines, used when
58 we are dragging objects around on the home screen. -->
59 <integer name="config_dragOutlineFadeTime">900</integer>
60
61 <!-- The alpha value at which to show the most recent drop visualization outline. -->
Joe Onorato4be866d2010-10-10 11:26:02 -070062 <integer name="config_dragOutlineMaxAlpha">128</integer>
Patrick Dubroyce34a972010-10-19 10:34:32 -070063
64 <!-- Parameters controlling the animation for when an item is dropped on the home screen,
65 and it animates from its old position to the new one. -->
Winson Chung61b0c692012-02-23 16:31:13 -080066 <integer name="config_dropAnimMinDuration">100</integer>
Adam Cohen8dfcba42011-07-07 16:38:18 -070067 <integer name="config_dropAnimMaxDuration">500</integer>
Patrick Dubroyce34a972010-10-19 10:34:32 -070068
Adam Cohen7f4eabe2011-04-21 16:19:16 -070069 <!-- The duration of the UserFolder opening and closing animation -->
Adam Cohenc4fe9ea2014-08-18 18:54:10 -070070 <integer name="config_materialFolderExpandDuration">200</integer>
Jon Mirandace74d2a2017-03-23 10:17:55 -070071 <integer name="config_folderDelay">30</integer>
Adam Cohen7f4eabe2011-04-21 16:19:16 -070072
Patrick Dubroyce34a972010-10-19 10:34:32 -070073 <!-- The distance at which the animation should take the max duration -->
74 <integer name="config_dropAnimMaxDist">800</integer>
Adam Lesinski2a898a02010-12-09 21:04:15 -080075
Peter Schillera30b51c2016-07-13 14:04:13 -070076 <!-- The duration of the caret animation -->
77 <integer name="config_caretAnimationDuration">200</integer>
78
Winson Chung0e721a42012-08-02 17:40:30 -070079<!-- Hotseat -->
80 <bool name="hotseat_transpose_layout_with_orientation">true</bool>
Daniel Sandlera127b7a2013-06-17 14:25:46 -040081
Bjorn Bringert1307f632013-10-03 22:31:03 +010082 <!-- Name of a subclass of com.android.launcher3.AppFilter used to
83 filter the activities shown in the launcher. Can be empty. -->
84 <string name="app_filter_class" translatable="false"></string>
85
Annie Chin17f85952016-03-24 17:12:30 -070086 <!-- Name of an icon provider class. -->
87 <string name="icon_provider_class" translatable="false"></string>
88
Sunny Goyal55cb70b2016-11-12 09:58:29 -080089 <!-- Name of a drawable factory class. -->
90 <string name="drawable_factory_class" translatable="false"></string>
91
Sunny Goyala535ae42017-02-27 10:07:13 -080092 <!-- Name of a user event dispatcher class. -->
93 <string name="user_event_dispatcher_class" translatable="false"></string>
94
Jon Miranda54441f52018-01-24 15:38:25 -080095 <!-- Name of an app transition manager class. -->
96 <string name="app_transition_manager_class" translatable="false"></string>
97
Sunny Goyalf5523922017-08-28 15:29:18 -070098 <!-- Name of a subclass of com.android.launcher3.util.InstantAppResolver. Can be empty. -->
99 <string name="instant_app_resolver_class" translatable="false"></string>
100
Sunny Goyal66f2b352018-02-09 10:57:12 -0800101 <!-- Name of a main process initializer class. -->
102 <string name="main_process_initializer_class" translatable="false"></string>
103
Sunny Goyal04cc3a72016-05-17 10:32:43 -0700104 <!-- Package name of the default wallpaper picker. -->
105 <string name="wallpaper_picker_package" translatable="false"></string>
106
Mario Bertschler7662a3e2018-01-12 10:23:16 -0800107 <!-- Whitelisted package to retrieve packagename for badge. Can be empty. -->
108 <string name="shortcutinfocompat_badgepkg_whitelist" translatable="false"></string>
109
Sunny Goyalebfae6e2015-08-27 15:30:25 -0700110 <!-- View ID to use for QSB widget -->
111 <item type="id" name="qsb_widget" />
112
Sunny Goyale2fd14b2015-08-27 17:45:46 -0700113 <!-- View ID used by cell layout to jail its content -->
114 <item type="id" name="cell_layout_jail_id" />
115
Sunny Goyal6639a5d2018-02-28 15:09:36 -0800116 <!-- Tag id used for view scrim -->
117 <item type="id" name="view_scrim" />
118
Sunny Goyal3fbca152017-11-02 18:55:44 -0700119 <!-- View IDs to store item highlight information -->
120 <item type="id" name="view_unhighlight_background" />
121 <item type="id" name="view_highlighted" />
122
Tony Wickham9438ed42017-01-20 09:38:25 -0800123<!-- Popup items -->
Tonyd6573ed2017-06-28 17:51:53 -0700124 <integer name="config_popupOpenCloseDuration">150</integer>
Tonyacaf5b32017-05-10 13:05:32 -0500125 <integer name="config_popupArrowOpenDuration">80</integer>
Tony Wickham9438ed42017-01-20 09:38:25 -0800126 <integer name="config_removeNotificationViewDuration">300</integer>
Tony Wickham8f58e612016-07-15 17:23:07 -0700127
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800128<!-- Accessibility actions -->
129 <item type="id" name="action_remove" />
130 <item type="id" name="action_uninstall" />
Winson Chung1054d4e2018-03-05 19:39:21 +0000131 <item type="id" name="action_reconfigure" />
Sunny Goyal71b5c0b2015-01-08 16:59:04 -0800132 <item type="id" name="action_add_to_workspace" />
Adam Cohenc9735cf2015-01-23 16:11:55 -0800133 <item type="id" name="action_move" />
Sunny Goyal9ae77772015-04-29 16:30:23 -0700134 <item type="id" name="action_move_to_workspace" />
Sunny Goyal1d08f702015-05-04 15:50:25 -0700135 <item type="id" name="action_move_screen_backwards" />
136 <item type="id" name="action_move_screen_forwards" />
Sunny Goyal9ca9c132015-04-29 14:57:22 -0700137 <item type="id" name="action_resize" />
Sunny Goyal3ffa64d2016-07-25 13:54:32 -0700138 <item type="id" name="action_deep_shortcuts" />
Vadim Trysheva50d99f2018-05-04 17:58:29 -0700139 <item type="id" name="action_shortcuts_and_notifications"/>
Tony18c4aa42017-05-10 21:23:57 -0500140 <item type="id" name="action_dismiss_notification" />
Sunny Goyalc7b8df82017-06-27 11:11:03 -0700141
142<!-- QSB IDs. DO not change -->
143 <item type="id" name="search_container_workspace" />
144 <item type="id" name="search_container_hotseat" />
145 <item type="id" name="search_container_all_apps" />
146
Winson Chungb63b44c2017-11-10 17:54:44 -0800147<!-- Recents -->
Vadim Tryshev6d2321c2018-04-11 17:19:08 -0700148 <item type="id" name="overview_panel"/>
Winson Chungb63b44c2017-11-10 17:54:44 -0800149 <integer name="config_recentsMaxThumbnailCacheSize">6</integer>
150 <integer name="config_recentsMaxIconCacheSize">12</integer>
151
Vadim Tryshev74c261c2018-06-12 13:44:43 -0700152 <item name="workspace_page_container" type="id" />
Daniel Sandler388f6792010-03-02 14:08:08 -0500153</resources>