2018-06-06 17:07:29 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!--
|
|
|
|
|
Copyright (C) 2018 The Android Open Source Project
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
-->
|
|
|
|
|
<resources>
|
|
|
|
|
<!-- Task Menu layout styles. -->
|
|
|
|
|
<style name="TaskMenu">
|
|
|
|
|
<item name="android:orientation">vertical</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<!-- Task Menu Option layout styles. -->
|
|
|
|
|
<style name="TaskMenu.Option">
|
|
|
|
|
<item name="android:layout_width">match_parent</item>
|
|
|
|
|
<item name="android:layout_height">wrap_content</item>
|
|
|
|
|
</style>
|
2019-12-26 09:40:12 -08:00
|
|
|
|
|
|
|
|
<style name="TextAppearance.BackGestureTutorial"
|
|
|
|
|
parent="android:TextAppearance.Material.Body1" />
|
|
|
|
|
|
|
|
|
|
<style name="TextAppearance.BackGestureTutorial.CallToAction"
|
|
|
|
|
parent="android:TextAppearance.Material.Body2" />
|
|
|
|
|
|
|
|
|
|
<style name="TextAppearance.BackGestureTutorial.Title"
|
|
|
|
|
parent="TextAppearance.BackGestureTutorial">
|
|
|
|
|
<item name="android:gravity">center</item>
|
|
|
|
|
<item name="android:textColor">@color/back_gesture_tutorial_title_color</item>
|
|
|
|
|
<item name="android:textSize">28sp</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<style name="TextAppearance.BackGestureTutorial.Subtitle"
|
|
|
|
|
parent="TextAppearance.BackGestureTutorial">
|
|
|
|
|
<item name="android:gravity">center</item>
|
|
|
|
|
<item name="android:textColor">@color/back_gesture_tutorial_subtitle_color</item>
|
|
|
|
|
<item name="android:letterSpacing">0.03</item>
|
|
|
|
|
<item name="android:textSize">21sp</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<style name="TextAppearance.BackGestureTutorial.ButtonLabel"
|
|
|
|
|
parent="TextAppearance.BackGestureTutorial.CallToAction">
|
|
|
|
|
<item name="android:gravity">center</item>
|
|
|
|
|
<item name="android:textColor">@color/back_gesture_tutorial_action_button_label_color</item>
|
|
|
|
|
<item name="android:letterSpacing">0.02</item>
|
|
|
|
|
<item name="android:textSize">16sp</item>
|
|
|
|
|
<item name="android:textAllCaps">false</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<style name="TextAppearance.BackGestureTutorial.TextButtonLabel"
|
|
|
|
|
parent="TextAppearance.BackGestureTutorial.ButtonLabel">
|
|
|
|
|
<item name="android:textColor">@color/back_gesture_tutorial_primary_color</item>
|
|
|
|
|
</style>
|
2018-06-06 17:07:29 -07:00
|
|
|
</resources>
|