default_workspace_3x3.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2015 The Android Open Source Project
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <favorites xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3">
  14. <!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
  15. <!-- Messaging, [All Apps], Dialer -->
  16. <resolve
  17. launcher:container="-101"
  18. launcher:screen="0"
  19. launcher:x="0"
  20. launcher:y="0" >
  21. <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" />
  22. <favorite launcher:uri="sms:" />
  23. <favorite launcher:uri="smsto:" />
  24. <favorite launcher:uri="mms:" />
  25. <favorite launcher:uri="mmsto:" />
  26. </resolve>
  27. <!-- All Apps -->
  28. <resolve
  29. launcher:container="-101"
  30. launcher:screen="2"
  31. launcher:x="2"
  32. launcher:y="0" >
  33. <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" />
  34. <favorite launcher:uri="tel:123" />
  35. <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" />
  36. </resolve>
  37. <!-- Bottom row -->
  38. <resolve
  39. launcher:screen="0"
  40. launcher:x="0"
  41. launcher:y="-1" >
  42. <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" />
  43. <favorite launcher:uri="mailto:" />
  44. </resolve>
  45. <resolve
  46. launcher:screen="0"
  47. launcher:x="1"
  48. launcher:y="-1" >
  49. <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" />
  50. <favorite launcher:uri="#Intent;type=images/*;end" />
  51. </resolve>
  52. <resolve
  53. launcher:screen="0"
  54. launcher:x="2"
  55. launcher:y="-1" >
  56. <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" />
  57. <favorite launcher:uri="market://details?id=com.android.launcher" />
  58. </resolve>
  59. <!-- Second last row -->
  60. <resolve
  61. launcher:screen="0"
  62. launcher:x="0"
  63. launcher:y="-2" >
  64. <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" />
  65. <favorite launcher:uri="http://www.example.com/" />
  66. </resolve>
  67. <resolve
  68. launcher:screen="0"
  69. launcher:x="2"
  70. launcher:y="-2" >
  71. <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" />
  72. <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" />
  73. </resolve>
  74. </favorites>