config.xml 6.4 KB

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