attrs.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright (C) 2021 The Android Open Source Project
  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. http://www.apache.org/licenses/LICENSE-2.0
  8. Unless required by applicable law or agreed to in writing, software
  9. distributed under the License is distributed on an "AS IS" BASIS,
  10. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. See the License for the specific language governing permissions and
  12. limitations under the License.
  13. -->
  14. <resources>
  15. <declare-styleable name="AllSetLinkSpan">
  16. <attr name="android:textSize"/>
  17. <attr name="android:fontFamily"/>
  18. </declare-styleable>
  19. <!--
  20. TaskView specific attributes. These attributes are used to customize a TaskView view in
  21. XML files.
  22. -->
  23. <declare-styleable name="TaskView">
  24. <!-- Border color for a keyboard quick switch task views -->
  25. <attr name="borderColor" format="color" />
  26. </declare-styleable>
  27. <!--
  28. Gesture nav edu specific attributes. These attributes are used to customize Gesture nav edu
  29. view lottie animation colors in XML files.
  30. -->
  31. <declare-styleable name="RootSandboxLayout">
  32. <attr name="tutorialSubtitle" format="color" />
  33. <attr name="surfaceContainer" format="color" />
  34. <attr name="onSurfaceHome" format="color" />
  35. <attr name="surfaceHome" format="color" />
  36. <attr name="secondaryHome" format="color" />
  37. <attr name="onSurfaceBack" format="color" />
  38. <attr name="surfaceBack" format="color" />
  39. <attr name="secondaryBack" format="color" />
  40. <attr name="onSurfaceOverview" format="color" />
  41. <attr name="surfaceOverview" format="color" />
  42. <attr name="secondaryOverview" format="color" />
  43. </declare-styleable>
  44. </resources>