blob: e56397aa94833cd4599c9457d24eacf233ea8a72 [file] [log] [blame]
Matthew Ng1b9c3d62018-06-06 17:07:29 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2018 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<resources>
18 <!-- Task Menu layout styles. -->
19 <style name="TaskMenu">
20 <item name="android:orientation">vertical</item>
21 </style>
22
23 <!-- Task Menu Option layout styles. -->
24 <style name="TaskMenu.Option">
25 <item name="android:layout_width">match_parent</item>
26 <item name="android:layout_height">wrap_content</item>
27 </style>
Pinyao Ting993aef82019-12-26 09:40:12 -080028
Andy Wickhamed7c8a42020-04-16 17:46:13 +000029 <style name="TextAppearance.GestureTutorial"
Pinyao Ting993aef82019-12-26 09:40:12 -080030 parent="android:TextAppearance.Material.Body1" />
31
Andy Wickhamed7c8a42020-04-16 17:46:13 +000032 <style name="TextAppearance.GestureTutorial.CallToAction"
Pinyao Ting993aef82019-12-26 09:40:12 -080033 parent="android:TextAppearance.Material.Body2" />
34
Andy Wickhamed7c8a42020-04-16 17:46:13 +000035 <style name="TextAppearance.GestureTutorial.Title"
36 parent="TextAppearance.GestureTutorial">
Pinyao Ting993aef82019-12-26 09:40:12 -080037 <item name="android:gravity">center</item>
Adam Cohenf903d2c2020-06-03 18:56:27 -040038 <item name="android:textColor">?android:attr/textColorPrimary</item>
Pinyao Ting993aef82019-12-26 09:40:12 -080039 <item name="android:textSize">28sp</item>
40 </style>
41
Andy Wickhamed7c8a42020-04-16 17:46:13 +000042 <style name="TextAppearance.GestureTutorial.Subtitle"
43 parent="TextAppearance.GestureTutorial">
Pinyao Ting993aef82019-12-26 09:40:12 -080044 <item name="android:gravity">center</item>
Adam Cohenf903d2c2020-06-03 18:56:27 -040045 <item name="android:textColor">?android:attr/textColorTertiary</item>
Pinyao Ting993aef82019-12-26 09:40:12 -080046 <item name="android:letterSpacing">0.03</item>
47 <item name="android:textSize">21sp</item>
48 </style>
49
Andy Wickham64a91132020-04-16 21:13:01 +000050 <style name="TextAppearance.GestureTutorial.Feedback"
51 parent="TextAppearance.GestureTutorial">
52 <item name="android:gravity">center</item>
Adam Cohenf903d2c2020-06-03 18:56:27 -040053 <item name="android:textColor">?android:attr/textColorPrimary</item>
Andy Wickham64a91132020-04-16 21:13:01 +000054 <item name="android:letterSpacing">0.03</item>
55 <item name="android:textSize">21sp</item>
56 </style>
57
Andy Wickhamed7c8a42020-04-16 17:46:13 +000058 <style name="TextAppearance.GestureTutorial.ButtonLabel"
59 parent="TextAppearance.GestureTutorial.CallToAction">
Pinyao Ting993aef82019-12-26 09:40:12 -080060 <item name="android:gravity">center</item>
Andy Wickham28095162020-04-14 23:08:46 +000061 <item name="android:textColor">@color/gesture_tutorial_action_button_label_color</item>
Pinyao Ting993aef82019-12-26 09:40:12 -080062 <item name="android:letterSpacing">0.02</item>
63 <item name="android:textSize">16sp</item>
64 <item name="android:textAllCaps">false</item>
65 </style>
66
Andy Wickhamed7c8a42020-04-16 17:46:13 +000067 <style name="TextAppearance.GestureTutorial.TextButtonLabel"
68 parent="TextAppearance.GestureTutorial.ButtonLabel">
Andy Wickham28095162020-04-14 23:08:46 +000069 <item name="android:textColor">@color/gesture_tutorial_primary_color</item>
Pinyao Ting993aef82019-12-26 09:40:12 -080070 </style>
Sreyas1963d3f2020-03-09 18:10:08 -070071
Zak Cohenb4ee0582020-05-04 17:13:01 -070072 <!--
73 Can be applied to views to color things like ripples and list highlights the workspace text
74 color.
75 -->
76 <style name="ThemeControlHighlightWorkspaceColor">
77 <item name="android:colorControlHighlight">?attr/workspaceTextColor</item>
78 </style>
79
Sreyas1963d3f2020-03-09 18:10:08 -070080 <style name="OverviewActionButton"
81 parent="@android:style/Widget.DeviceDefault.Button.Borderless">
Sreyas78f53852020-04-27 13:29:57 -070082 <item name="android:textColor">@color/overview_button</item>
83 <item name="android:drawableTint">@color/overview_button</item>
Zak Cohena547b782021-03-29 16:52:26 -070084 <item name="android:tint">?android:attr/textColorPrimary</item>
Sreyasae237462020-05-28 16:46:44 -070085 <item name="android:drawablePadding">8dp</item>
Sreyas1963d3f2020-03-09 18:10:08 -070086 <item name="android:textAllCaps">false</item>
87 </style>
Tony Wickham794fe4f2021-01-11 14:54:23 -060088
89 <!-- Icon displayed on the taskbar -->
90 <style name="BaseIcon.Workspace.Taskbar" >
91 <item name="iconDisplay">taskbar</item>
Tony Wickham794fe4f2021-01-11 14:54:23 -060092 </style>
Matthew Ng1b9c3d62018-06-06 17:07:29 -070093</resources>