Andras Kloczl | c2bd15f | 2022-03-30 18:06:13 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2022 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
Daniel Sandler | 388f679 | 2010-03-02 14:08:08 -0500 | [diff] [blame] | 16 | <resources> |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 17 | <!-- Miscellaneous --> |
Adam Cohen | 56901eb | 2011-07-25 14:54:22 -0700 | [diff] [blame] | 18 | <bool name="config_largeHeap">false</bool> |
Winson Chung | a62e9fd | 2011-07-11 15:20:48 -0700 | [diff] [blame] | 19 | |
Mario Bertschler | f30c63c | 2017-08-21 12:32:42 -0700 | [diff] [blame] | 20 | <integer name="extracted_color_gradient_alpha">153</integer> |
Sunny Goyal | 6d1e9a1 | 2017-07-27 10:21:50 -0700 | [diff] [blame] | 21 | |
Sunny Goyal | 112ce42 | 2016-08-22 16:45:29 -0700 | [diff] [blame] | 22 | <!-- A string pointer to the original app name string. This allows derived projects to |
| 23 | easily override the app name without providing all translations --> |
| 24 | <string name="derived_app_name" translatable="false">@string/app_name</string> |
| 25 | |
Sunny Goyal | 161f96b | 2017-05-07 11:56:00 -0700 | [diff] [blame] | 26 | <!-- String representing the intent for search on the apps market. To specify a query, add |
| 27 | q=<query> to the data to the intent --> |
| 28 | <string name="market_search_intent" translatable="false">market://search?c=apps</string> |
| 29 | |
Jon Miranda | c56e3ff | 2017-08-23 12:13:24 -0700 | [diff] [blame] | 30 | <!-- String representing the intent to delete a package.--> |
| 31 | <string name="delete_package_intent" translatable="false">#Intent;action=android.intent.action.DELETE;launchFlags=0x10800000;end</string> |
| 32 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 33 | <!-- String representing the fragment class for settings activity.--> |
Sunny Goyal | eae0514 | 2018-10-24 16:20:37 -0700 | [diff] [blame] | 34 | <string name="settings_fragment_name" translatable="false">com.android.launcher3.settings.SettingsActivity$LauncherSettingsFragment</string> |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 35 | |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 36 | <!-- DragController --> |
Sunny Goyal | 5837692 | 2015-05-26 18:56:52 -0700 | [diff] [blame] | 37 | <item type="id" name="drag_event_parity" /> |
Winson Chung | 6e1bdaf | 2012-05-29 17:03:45 -0700 | [diff] [blame] | 38 | |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 39 | <!-- AllApps & Launcher transitions --> |
Sunny Goyal | 5024503 | 2016-07-13 14:24:18 -0700 | [diff] [blame] | 40 | <!-- The duration of the animation from search hint to text entry --> |
| 41 | <integer name="config_searchHintAnimationDuration">50</integer> |
| 42 | |
Andras Kloczl | c2bd15f | 2022-03-30 18:06:13 +0100 | [diff] [blame] | 43 | <!-- The duration of the PagedView page snap animation --> |
| 44 | <integer name="config_pageSnapAnimationDuration">750</integer> |
| 45 | |
Jon Miranda | 5c83e7c | 2017-06-06 15:41:21 -0700 | [diff] [blame] | 46 | <!-- View tag key used to store SpringAnimation data. --> |
| 47 | <item type="id" name="spring_animation_tag" /> |
| 48 | |
Jon Miranda | 32ff76c | 2021-06-01 21:26:10 -0700 | [diff] [blame] | 49 | <!-- View tag key used to determine if we should fade in the child views.. --> |
| 50 | <string name="popup_container_iterate_children" translatable="false">popup_container_iterate_children</string> |
| 51 | |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 52 | <!-- Workspace --> |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 53 | <!-- The duration (in ms) of the fade animation on the object outlines, used when |
| 54 | we are dragging objects around on the home screen. --> |
Adam Cohen | 0c4d278 | 2021-04-29 15:56:13 -0700 | [diff] [blame] | 55 | <integer name="config_dragOutlineFadeTime">500</integer> |
Patrick Dubroy | 046e7eb | 2010-10-06 12:14:43 -0700 | [diff] [blame] | 56 | |
| 57 | <!-- The alpha value at which to show the most recent drop visualization outline. --> |
Adam Cohen | f7ca3b4 | 2021-02-22 11:03:58 -0800 | [diff] [blame] | 58 | <integer name="config_dragOutlineMaxAlpha">255</integer> |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 59 | |
| 60 | <!-- Parameters controlling the animation for when an item is dropped on the home screen, |
| 61 | and it animates from its old position to the new one. --> |
Winson Chung | 61b0c69 | 2012-02-23 16:31:13 -0800 | [diff] [blame] | 62 | <integer name="config_dropAnimMinDuration">100</integer> |
Adam Cohen | 8dfcba4 | 2011-07-07 16:38:18 -0700 | [diff] [blame] | 63 | <integer name="config_dropAnimMaxDuration">500</integer> |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 64 | |
Adam Cohen | 7f4eabe | 2011-04-21 16:19:16 -0700 | [diff] [blame] | 65 | <!-- The duration of the UserFolder opening and closing animation --> |
Adam Cohen | c4fe9ea | 2014-08-18 18:54:10 -0700 | [diff] [blame] | 66 | <integer name="config_materialFolderExpandDuration">200</integer> |
Jon Miranda | ce74d2a | 2017-03-23 10:17:55 -0700 | [diff] [blame] | 67 | <integer name="config_folderDelay">30</integer> |
Adam Cohen | 7f4eabe | 2011-04-21 16:19:16 -0700 | [diff] [blame] | 68 | |
Patrick Dubroy | ce34a97 | 2010-10-19 10:34:32 -0700 | [diff] [blame] | 69 | <!-- The distance at which the animation should take the max duration --> |
| 70 | <integer name="config_dropAnimMaxDist">800</integer> |
Adam Lesinski | 2a898a0 | 2010-12-09 21:04:15 -0800 | [diff] [blame] | 71 | |
Peter Schiller | a30b51c | 2016-07-13 14:04:13 -0700 | [diff] [blame] | 72 | <!-- The duration of the caret animation --> |
| 73 | <integer name="config_caretAnimationDuration">200</integer> |
| 74 | |
Sunny Goyal | 194f585 | 2018-08-15 16:07:31 -0700 | [diff] [blame] | 75 | <!-- Various classes overriden by projects/build flavors. --> |
Hyunyoung Song | 1ae4242 | 2020-01-26 23:25:14 -0800 | [diff] [blame] | 76 | <string name="folder_name_provider_class" translatable="false"></string> |
Hyunyoung Song | fc00747 | 2018-10-25 14:09:50 -0700 | [diff] [blame] | 77 | <string name="stats_log_manager_class" translatable="false"></string> |
Sunny Goyal | f552392 | 2017-08-28 15:29:18 -0700 | [diff] [blame] | 78 | <string name="instant_app_resolver_class" translatable="false"></string> |
Sunny Goyal | 66f2b35 | 2018-02-09 10:57:12 -0800 | [diff] [blame] | 79 | <string name="main_process_initializer_class" translatable="false"></string> |
Sunny Goyal | 369212a | 2019-03-26 15:03:57 -0700 | [diff] [blame] | 80 | <string name="app_launch_tracker_class" translatable="false"></string> |
Sunny Goyal | ab3963d | 2019-05-23 00:50:08 -0700 | [diff] [blame] | 81 | <string name="test_information_handler_class" translatable="false"></string> |
Sunny Goyal | e529a86 | 2019-08-06 09:48:36 -0700 | [diff] [blame] | 82 | <string name="launcher_activity_logic_class" translatable="false"></string> |
Sunny Goyal | 8b74cc7 | 2020-07-27 17:50:33 -0700 | [diff] [blame] | 83 | <string name="model_delegate_class" translatable="false"></string> |
Sunny Goyal | 187b16c | 2022-03-01 16:53:23 -0800 | [diff] [blame] | 84 | <string name="window_manager_proxy_class" translatable="false"></string> |
Sukesh Ram | 1b4869f | 2022-06-06 21:40:11 +0000 | [diff] [blame] | 85 | <string name="secondary_display_predictions_class" translatable="false"></string> |
Sihua Ma | 1db8bc2 | 2022-11-08 17:13:13 -0800 | [diff] [blame] | 86 | <string name="widget_holder_factory_class" translatable="false"></string> |
Brian Isganitis | 7a5809e | 2023-05-17 21:54:16 +0000 | [diff] [blame] | 87 | <string name="taskbar_search_session_controller_class" translatable="false"></string> |
Brian Isganitis | d478b14 | 2023-05-22 22:12:15 +0000 | [diff] [blame] | 88 | <string name="taskbar_model_callbacks_factory_class" translatable="false"></string> |
Charlie Anderson | 489f1ad | 2023-10-25 17:30:55 -0400 | [diff] [blame] | 89 | <string name="launcher_restore_event_logger_class" translatable="false"></string> |
Sunny Goyal | 66f2b35 | 2018-02-09 10:57:12 -0800 | [diff] [blame] | 90 | |
Sunny Goyal | ebfae6e | 2015-08-27 15:30:25 -0700 | [diff] [blame] | 91 | <!-- View ID to use for QSB widget --> |
| 92 | <item type="id" name="qsb_widget" /> |
| 93 | |
Sunny Goyal | e2fd14b | 2015-08-27 17:45:46 -0700 | [diff] [blame] | 94 | <!-- View ID used by cell layout to jail its content --> |
| 95 | <item type="id" name="cell_layout_jail_id" /> |
| 96 | |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 97 | <!-- View IDs to store item highlight information --> |
| 98 | <item type="id" name="view_unhighlight_background" /> |
Sunny Goyal | 3fbca15 | 2017-11-02 18:55:44 -0700 | [diff] [blame] | 99 | |
Samuel Fufa | e79b469 | 2021-06-17 11:34:20 -0500 | [diff] [blame] | 100 | <!-- view ID used to restore work tab state --> |
| 101 | <item type="id" name="work_tab_state_id" /> |
| 102 | |
Sunny Goyal | eae0514 | 2018-10-24 16:20:37 -0700 | [diff] [blame] | 103 | <!-- Menu id for feature flags --> |
| 104 | <item type="id" name="menu_apply_flags" /> |
| 105 | |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 106 | <!-- Default packages --> |
| 107 | <string name="wallpaper_picker_package" translatable="false"></string> |
Pierre Barbier de Reuille | ab33b76 | 2021-02-16 20:58:35 +0000 | [diff] [blame] | 108 | <string name="local_colors_extraction_class" translatable="false"></string> |
Brian Isganitis | 63c32ca | 2022-03-22 14:57:21 -0700 | [diff] [blame] | 109 | <string name="search_session_manager_class" translatable="false"></string> |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 110 | |
| 111 | <!-- Accessibility actions --> |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 112 | <item type="id" name="action_remove" /> |
| 113 | <item type="id" name="action_uninstall" /> |
Winson Chung | 1054d4e | 2018-03-05 19:39:21 +0000 | [diff] [blame] | 114 | <item type="id" name="action_reconfigure" /> |
Sunny Goyal | 71b5c0b | 2015-01-08 16:59:04 -0800 | [diff] [blame] | 115 | <item type="id" name="action_add_to_workspace" /> |
Adam Cohen | c9735cf | 2015-01-23 16:11:55 -0800 | [diff] [blame] | 116 | <item type="id" name="action_move" /> |
Sunny Goyal | 9ae7777 | 2015-04-29 16:30:23 -0700 | [diff] [blame] | 117 | <item type="id" name="action_move_to_workspace" /> |
Sunny Goyal | 1d08f70 | 2015-05-04 15:50:25 -0700 | [diff] [blame] | 118 | <item type="id" name="action_move_screen_backwards" /> |
| 119 | <item type="id" name="action_move_screen_forwards" /> |
Sunny Goyal | 9ca9c13 | 2015-04-29 14:57:22 -0700 | [diff] [blame] | 120 | <item type="id" name="action_resize" /> |
Sunny Goyal | 3ffa64d | 2016-07-25 13:54:32 -0700 | [diff] [blame] | 121 | <item type="id" name="action_deep_shortcuts" /> |
Vadim Tryshev | a50d99f | 2018-05-04 17:58:29 -0700 | [diff] [blame] | 122 | <item type="id" name="action_shortcuts_and_notifications"/> |
Tony | 18c4aa4 | 2017-05-10 21:23:57 -0500 | [diff] [blame] | 123 | <item type="id" name="action_dismiss_notification" /> |
Vadim Tryshev | dc7d25d | 2018-10-15 14:01:04 -0700 | [diff] [blame] | 124 | <item type="id" name="action_remote_action_shortcut" /> |
Samuel Fufa | 5cf3e86 | 2020-02-03 20:22:54 -0800 | [diff] [blame] | 125 | <item type="id" name="action_dismiss_prediction" /> |
Samuel Fufa | 6eaf989 | 2020-04-01 11:40:40 -0700 | [diff] [blame] | 126 | <item type="id" name="action_pin_prediction"/> |
Sunny Goyal | c7b8df8 | 2017-06-27 11:11:03 -0700 | [diff] [blame] | 127 | |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 128 | <!-- QSB IDs. DO not change --> |
Sunny Goyal | c7b8df8 | 2017-06-27 11:11:03 -0700 | [diff] [blame] | 129 | <item type="id" name="search_container_workspace" /> |
Sunny Goyal | c7b8df8 | 2017-06-27 11:11:03 -0700 | [diff] [blame] | 130 | <item type="id" name="search_container_all_apps" /> |
Samuel Fufa | 2ea01e4 | 2020-12-02 13:48:18 -0600 | [diff] [blame] | 131 | <item type="id" name="search_container_hotseat" /> |
Sunny Goyal | c7b8df8 | 2017-06-27 11:11:03 -0700 | [diff] [blame] | 132 | |
Thales Lima | b8c0595 | 2022-05-23 16:58:38 +0100 | [diff] [blame] | 133 | <!-- Scalable Grid configuration --> |
| 134 | <!-- This is a float because it is converted to dp later in DeviceProfile --> |
| 135 | <dimen name="hotseat_bar_bottom_space_default">48</dimen> |
| 136 | <dimen name="hotseat_qsb_space_default">0</dimen> |
| 137 | |
Sunny Goyal | 1416843 | 2019-10-24 15:59:49 -0700 | [diff] [blame] | 138 | <!-- Recents --> |
Vadim Tryshev | 6d2321c | 2018-04-11 17:19:08 -0700 | [diff] [blame] | 139 | <item type="id" name="overview_panel"/> |
Sunny Goyal | 7b97eeb | 2019-11-08 13:43:58 -0800 | [diff] [blame] | 140 | |
Peter Kalauskas | 03c8f29 | 2020-02-18 16:20:27 -0800 | [diff] [blame] | 141 | <!-- Whether to enable background preloading of task thumbnails. --> |
| 142 | <bool name="config_enableTaskSnapshotPreloading">true</bool> |
| 143 | |
Sunny Goyal | 7b97eeb | 2019-11-08 13:43:58 -0800 | [diff] [blame] | 144 | <!-- Configuration resources --> |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 145 | <item name="all_apps_spring_damping_ratio" type="dimen" format="float">0.75</item> |
| 146 | <item name="all_apps_spring_stiffness" type="dimen" format="float">600</item> |
| 147 | |
Sunny Goyal | 7f9e8e2 | 2020-04-17 12:05:21 -0700 | [diff] [blame] | 148 | <item name="dismiss_task_trans_y_damping_ratio" type="dimen" format="float">0.73</item> |
| 149 | <item name="dismiss_task_trans_y_stiffness" type="dimen" format="float">800</item> |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 150 | |
Sunny Goyal | 7f9e8e2 | 2020-04-17 12:05:21 -0700 | [diff] [blame] | 151 | <item name="dismiss_task_trans_x_damping_ratio" type="dimen" format="float">0.73</item> |
| 152 | <item name="dismiss_task_trans_x_stiffness" type="dimen" format="float">800</item> |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 153 | |
Jon Miranda | 57dab6f | 2020-04-10 13:38:14 -0700 | [diff] [blame] | 154 | <item name="horizontal_spring_damping_ratio" type="dimen" format="float">0.8</item> |
Jon Miranda | c2140bc | 2020-04-28 14:38:54 -0700 | [diff] [blame] | 155 | <item name="horizontal_spring_stiffness" type="dimen" format="float">250</item> |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 156 | |
Jon Miranda | 1a30476 | 2020-03-04 10:21:17 -0800 | [diff] [blame] | 157 | <item name="swipe_up_rect_scale_damping_ratio" type="dimen" format="float">0.75</item> |
| 158 | <item name="swipe_up_rect_scale_stiffness" type="dimen" format="float">200</item> |
Jon Miranda | da8c0f9 | 2022-08-05 15:43:48 -0700 | [diff] [blame] | 159 | <item name="swipe_up_rect_scale_higher_stiffness" type="dimen" format="float">400</item> |
Jon Miranda | 1a30476 | 2020-03-04 10:21:17 -0800 | [diff] [blame] | 160 | |
| 161 | <item name="swipe_up_rect_xy_fling_friction" type="dimen" format="float">1.5</item> |
Jon Miranda | c9ad2dd | 2021-04-13 09:34:29 -0400 | [diff] [blame] | 162 | |
Jon Miranda | 7d2dfcf | 2021-05-14 13:07:43 -0700 | [diff] [blame] | 163 | <item name="swipe_up_scale_start" type="dimen" format="float">0.88</item> |
Jon Miranda | c9ad2dd | 2021-04-13 09:34:29 -0400 | [diff] [blame] | 164 | |
Jon Miranda | 1a30476 | 2020-03-04 10:21:17 -0800 | [diff] [blame] | 165 | <item name="swipe_up_rect_xy_damping_ratio" type="dimen" format="float">0.8</item> |
Jon Miranda | 8fbf5cd | 2021-05-03 15:58:43 -0700 | [diff] [blame] | 166 | <item name="swipe_up_rect_xy_stiffness" type="dimen" format="float">200</item> |
Jon Miranda | c9ad2dd | 2021-04-13 09:34:29 -0400 | [diff] [blame] | 167 | |
Jon Miranda | 9c478b6 | 2023-03-23 21:38:49 -0700 | [diff] [blame] | 168 | <!-- Taskbar --> |
| 169 | <!-- This is a float because it is converted to dp later in DeviceProfile --> |
| 170 | <item name="taskbar_icon_size" type="dimen" format="float">0</item> |
| 171 | |
Jon Miranda | 18c53ac | 2023-03-17 16:34:52 -0700 | [diff] [blame] | 172 | <!-- These params are only used for hotseat items on devices that have a taskbar. --> |
| 173 | <item name="taskbar_swipe_up_rect_x_stiffness" type="dimen" format="float">350</item> |
| 174 | <item name="taskbar_swipe_up_rect_x_damping" type="dimen" format="float">0.9</item> |
| 175 | <item name="taskbar_swipe_up_rect_y_stiffness" type="dimen" format="float">200</item> |
| 176 | <item name="taskbar_swipe_up_rect_y_damping" type="dimen" format="float">0.78</item> |
| 177 | <item name="taskbar_swipe_up_rect_scale_stiffness" type="dimen" format="float">200</item> |
| 178 | |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 179 | <item name="staggered_damping_ratio" type="dimen" format="float">0.7</item> |
| 180 | <item name="staggered_stiffness" type="dimen" format="float">150</item> |
Jon Miranda | 8d3d275 | 2021-09-01 14:26:00 -0700 | [diff] [blame] | 181 | <dimen name="unlock_staggered_velocity_dp_per_s">2dp</dimen> |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 182 | |
Jon Miranda | 2716385 | 2020-06-18 13:03:01 -0700 | [diff] [blame] | 183 | <item name="hint_scale_damping_ratio" type="dimen" format="float">0.7</item> |
| 184 | <item name="hint_scale_stiffness" type="dimen" format="float">200</item> |
| 185 | <dimen name="hint_scale_velocity_dp_per_s">0.3dp</dimen> |
| 186 | |
Jon Miranda | 1a30476 | 2020-03-04 10:21:17 -0800 | [diff] [blame] | 187 | <!-- Swipe up to home related --> |
| 188 | <dimen name="swipe_up_fling_min_visible_change">18dp</dimen> |
Jon Miranda | 1a30476 | 2020-03-04 10:21:17 -0800 | [diff] [blame] | 189 | <dimen name="swipe_up_max_workspace_trans_y">-60dp</dimen> |
Jon Miranda | 13519e4 | 2021-09-14 13:59:07 -0700 | [diff] [blame] | 190 | <dimen name="swipe_up_max_velocity">7.619dp</dimen> |
Jon Miranda | 1a30476 | 2020-03-04 10:21:17 -0800 | [diff] [blame] | 191 | |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 192 | <array name="dynamic_resources"> |
Jon Miranda | c9ad2dd | 2021-04-13 09:34:29 -0400 | [diff] [blame] | 193 | <item>@dimen/swipe_up_scale_start</item> |
Jon Miranda | 13519e4 | 2021-09-14 13:59:07 -0700 | [diff] [blame] | 194 | <item>@dimen/swipe_up_max_velocity</item> |
Jon Miranda | 7edcd78 | 2020-03-02 13:18:55 -0800 | [diff] [blame] | 195 | </array> |
Tony Wickham | d6f917f | 2020-03-19 13:19:31 -0700 | [diff] [blame] | 196 | |
Sunny Goyal | 4484015 | 2020-08-25 23:22:18 -0700 | [diff] [blame] | 197 | <string-array name="filtered_components" ></string-array> |
Pierre Barbier de Reuille | ab33b76 | 2021-02-16 20:58:35 +0000 | [diff] [blame] | 198 | |
| 199 | <!-- Name of the class used to generate colors from the wallpaper colors. Must be implementing the LauncherAppWidgetHostView.ColorGenerator interface. --> |
| 200 | <string name="color_generator_class" translatable="false"/> |
| 201 | |
Shan Huang | 581429b | 2022-01-27 06:30:41 +0000 | [diff] [blame] | 202 | <!-- Swipe back to home related --> |
| 203 | <dimen name="swipe_back_window_scale_x_margin">10dp</dimen> |
Shan Huang | 581429b | 2022-01-27 06:30:41 +0000 | [diff] [blame] | 204 | <dimen name="swipe_back_window_corner_radius">40dp</dimen> |
Alex Chau | 3d2c062 | 2022-09-01 21:28:14 +0100 | [diff] [blame] | 205 | |
| 206 | <!-- The duration of the bottom sheet opening and closing animation --> |
| 207 | <integer name="config_bottomSheetOpenDuration">267</integer> |
| 208 | <integer name="config_bottomSheetCloseDuration">267</integer> |
| 209 | |
| 210 | <!-- The duration of the AllApps opening and closing animation --> |
| 211 | <integer name="config_allAppsOpenDuration">600</integer> |
| 212 | <integer name="config_allAppsCloseDuration">300</integer> |
| 213 | |
| 214 | <!-- The max scale for the wallpaper when it's zoomed in --> |
| 215 | <item name="config_wallpaperMaxScale" format="float" type="dimen">0</item> |
Mady Mellor | 78c8993 | 2022-08-16 12:13:50 -0700 | [diff] [blame] | 216 | |
Winson Chung | 39def73 | 2023-01-26 07:54:06 +0000 | [diff] [blame] | 217 | <!-- Whether the floating rotation button should be on the left/right in the device's natural |
| 218 | orientation --> |
| 219 | <bool name="floating_rotation_button_position_left">true</bool> |
Thales Lima | 2759aa3 | 2023-06-05 16:25:45 +0100 | [diff] [blame] | 220 | |
| 221 | <!-- Mapping of visual icon size to XML value http://b/235886078 --> |
| 222 | <dimen name="iconSize48dp">52dp</dimen> |
| 223 | <dimen name="iconSize50dp">55dp</dimen> |
| 224 | <dimen name="iconSize52dp">57dp</dimen> |
| 225 | <dimen name="iconSize54dp">59dp</dimen> |
| 226 | <dimen name="iconSize56dp">61dp</dimen> |
| 227 | <dimen name="iconSize58dp">63dp</dimen> |
| 228 | <dimen name="iconSize60dp">66dp</dimen> |
| 229 | <dimen name="iconSize66dp">72dp</dimen> |
| 230 | <dimen name="iconSize72dp">79dp</dimen> |
Jordan Silva | 999dd2a | 2023-11-17 19:31:43 +0000 | [diff] [blame] | 231 | <dimen name="iconSize82dp">90dp</dimen> |
| 232 | <dimen name="iconSize110dp">121dp</dimen> |
| 233 | <dimen name="iconSize144dp">158dp</dimen> |
| 234 | |
Thales Lima | 2759aa3 | 2023-06-05 16:25:45 +0100 | [diff] [blame] | 235 | |
| 236 | <!-- Icon size steps in dp --> |
| 237 | <integer-array name="icon_size_steps"> |
| 238 | <item>@dimen/iconSize48dp</item> |
| 239 | <item>@dimen/iconSize50dp</item> |
| 240 | <item>@dimen/iconSize52dp</item> |
| 241 | <item>@dimen/iconSize54dp</item> |
| 242 | <item>@dimen/iconSize56dp</item> |
| 243 | <item>@dimen/iconSize58dp</item> |
| 244 | <item>@dimen/iconSize60dp</item> |
| 245 | <item>@dimen/iconSize66dp</item> |
| 246 | <item>@dimen/iconSize72dp</item> |
Jordan Silva | 999dd2a | 2023-11-17 19:31:43 +0000 | [diff] [blame] | 247 | <item>@dimen/iconSize82dp</item> |
| 248 | <item>@dimen/iconSize110dp</item> |
| 249 | <item>@dimen/iconSize144dp</item> |
Thales Lima | 2759aa3 | 2023-06-05 16:25:45 +0100 | [diff] [blame] | 250 | </integer-array> |
fbaron | 30d9e3f | 2023-08-03 17:03:59 -0700 | [diff] [blame] | 251 | |
Thales Lima | 24ceca6 | 2023-09-25 16:21:17 -0700 | [diff] [blame] | 252 | <dimen name="minimum_icon_label_size">8sp</dimen> |
| 253 | |
fbaron | 30d9e3f | 2023-08-03 17:03:59 -0700 | [diff] [blame] | 254 | <!-- Used for custom widgets --> |
| 255 | <array name="custom_widget_providers"/> |
Anna Zhuravleva | d986fda | 2024-01-12 18:04:36 +0000 | [diff] [blame^] | 256 | |
| 257 | |
| 258 | <!-- Skip "Install to private" long-press shortcut packages name --> |
| 259 | <string-array name="skip_private_profile_shortcut_packages" translatable="false"> |
| 260 | <item>com.android.settings</item> |
| 261 | </string-array> |
Daniel Sandler | 388f679 | 2010-03-02 14:08:08 -0500 | [diff] [blame] | 262 | </resources> |