blob: 4915f5fb0d760461741908b2041535ce399146d3 [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>
Andy Wickham28095162020-04-14 23:08:46 +000038 <item name="android:textColor">@color/gesture_tutorial_title_color</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>
Andy Wickham28095162020-04-14 23:08:46 +000045 <item name="android:textColor">@color/gesture_tutorial_subtitle_color</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 Wickhamed7c8a42020-04-16 17:46:13 +000050 <style name="TextAppearance.GestureTutorial.ButtonLabel"
51 parent="TextAppearance.GestureTutorial.CallToAction">
Pinyao Ting993aef82019-12-26 09:40:12 -080052 <item name="android:gravity">center</item>
Andy Wickham28095162020-04-14 23:08:46 +000053 <item name="android:textColor">@color/gesture_tutorial_action_button_label_color</item>
Pinyao Ting993aef82019-12-26 09:40:12 -080054 <item name="android:letterSpacing">0.02</item>
55 <item name="android:textSize">16sp</item>
56 <item name="android:textAllCaps">false</item>
57 </style>
58
Andy Wickhamed7c8a42020-04-16 17:46:13 +000059 <style name="TextAppearance.GestureTutorial.TextButtonLabel"
60 parent="TextAppearance.GestureTutorial.ButtonLabel">
Andy Wickham28095162020-04-14 23:08:46 +000061 <item name="android:textColor">@color/gesture_tutorial_primary_color</item>
Pinyao Ting993aef82019-12-26 09:40:12 -080062 </style>
Sreyas1963d3f2020-03-09 18:10:08 -070063
64 <style name="OverviewActionButton"
65 parent="@android:style/Widget.DeviceDefault.Button.Borderless">
66 <item name="android:textColor">?attr/workspaceTextColor</item>
67 <item name="android:drawableTint">?attr/workspaceTextColor</item>
68 <item name="android:tint">?attr/workspaceTextColor</item>
69 <item name="android:drawablePadding">4dp</item>
70 <item name="android:textAllCaps">false</item>
71 </style>
Matthew Ng1b9c3d62018-06-06 17:07:29 -070072</resources>