mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
- Add TaskbarActivityContext which allows shared Launcher elements to "just work" using existing generic ActivityContext. - TaskbarContainerView extends BaseDragLayer<TaskbarActivityContext>. - Inflate FolderIcon and Folder using TaskbarActivityContext to be shown in TaskbarContainerView. - Use TaskbarActivityContext's DeviceProfile to determine icon size instead of overriding in styles. This also ensures that normal BubbleTextView icons have the same size as FolderIcons. Test: Place a folder in home screen hotseat, ensure it shows up in taskbar and can be opened, and that apps inside it can be launched or dragged. Bug: 171917176 Change-Id: Ic25d2f84bcd7e3399c88989305ea565497c030d9
93 lines
3.7 KiB
XML
93 lines
3.7 KiB
XML
<?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>
|
|
|
|
<style name="TextAppearance.GestureTutorial"
|
|
parent="android:TextAppearance.Material.Body1" />
|
|
|
|
<style name="TextAppearance.GestureTutorial.CallToAction"
|
|
parent="android:TextAppearance.Material.Body2" />
|
|
|
|
<style name="TextAppearance.GestureTutorial.Title"
|
|
parent="TextAppearance.GestureTutorial">
|
|
<item name="android:gravity">center</item>
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
<item name="android:textSize">28sp</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.GestureTutorial.Subtitle"
|
|
parent="TextAppearance.GestureTutorial">
|
|
<item name="android:gravity">center</item>
|
|
<item name="android:textColor">?android:attr/textColorTertiary</item>
|
|
<item name="android:letterSpacing">0.03</item>
|
|
<item name="android:textSize">21sp</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.GestureTutorial.Feedback"
|
|
parent="TextAppearance.GestureTutorial">
|
|
<item name="android:gravity">center</item>
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
<item name="android:letterSpacing">0.03</item>
|
|
<item name="android:textSize">21sp</item>
|
|
</style>
|
|
|
|
<style name="TextAppearance.GestureTutorial.ButtonLabel"
|
|
parent="TextAppearance.GestureTutorial.CallToAction">
|
|
<item name="android:gravity">center</item>
|
|
<item name="android:textColor">@color/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.GestureTutorial.TextButtonLabel"
|
|
parent="TextAppearance.GestureTutorial.ButtonLabel">
|
|
<item name="android:textColor">@color/gesture_tutorial_primary_color</item>
|
|
</style>
|
|
|
|
<!--
|
|
Can be applied to views to color things like ripples and list highlights the workspace text
|
|
color.
|
|
-->
|
|
<style name="ThemeControlHighlightWorkspaceColor">
|
|
<item name="android:colorControlHighlight">?attr/workspaceTextColor</item>
|
|
</style>
|
|
|
|
<style name="OverviewActionButton"
|
|
parent="@android:style/Widget.DeviceDefault.Button.Borderless">
|
|
<item name="android:textColor">@color/overview_button</item>
|
|
<item name="android:drawableTint">@color/overview_button</item>
|
|
<item name="android:tint">?attr/workspaceTextColor</item>
|
|
<item name="android:drawablePadding">8dp</item>
|
|
<item name="android:textAllCaps">false</item>
|
|
</style>
|
|
|
|
<!-- Icon displayed on the taskbar -->
|
|
<style name="BaseIcon.Workspace.Taskbar" >
|
|
<item name="iconDisplay">taskbar</item>
|
|
</style>
|
|
</resources> |