mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
[AllApps] Polish views according to specs
Bug: 196391749 Update work edu button stroke color Bug: 195497351 Update header font size for work apps paused state Bug: 192673256 Show ArrowTip elevation Bug: 192668800 Support for two line PopupOption view Test: visual Change-Id: I65f8c6152f54306756d6cb66de2581aff45b8d47 Merged-In: I65f8c6152f54306756d6cb66de2581aff45b8d47
This commit is contained in:
@@ -14,18 +14,11 @@
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:drawable="@drawable/rounded_action_button"
|
||||
android:left="@dimen/padded_rounded_button_padding"
|
||||
android:top="@dimen/padded_rounded_button_padding"
|
||||
android:right="@dimen/padded_rounded_button_padding"
|
||||
android:bottom="@dimen/padded_rounded_button_padding">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="@dimen/rounded_button_radius" />
|
||||
<stroke android:width="1dp"
|
||||
android:color="?androidprv:attr/colorAccentPrimaryVariant" />
|
||||
</shape>
|
||||
</item>
|
||||
android:bottom="@dimen/padded_rounded_button_padding" />
|
||||
</layer-list>
|
||||
|
||||
|
||||
@@ -19,7 +19,9 @@
|
||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="@dimen/rounded_button_radius" />
|
||||
<stroke android:width="1dp" android:color="@color/all_apps_tab_background_selected" />
|
||||
<stroke
|
||||
android:width="1dp"
|
||||
android:color="?androidprv:attr/colorAccentPrimaryVariant" />
|
||||
<padding
|
||||
android:left="@dimen/rounded_button_padding"
|
||||
android:right="@dimen/rounded_button_padding" />
|
||||
|
||||
@@ -27,15 +27,13 @@
|
||||
android:gravity="center"
|
||||
android:padding="16dp"
|
||||
android:background="@drawable/arrow_toast_rounded_background"
|
||||
android:elevation="2dp"
|
||||
android:outlineProvider="none"
|
||||
android:elevation="@dimen/arrow_toast_elevation"
|
||||
android:textColor="@color/arrow_tip_view_content"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<View
|
||||
android:id="@+id/arrow"
|
||||
android:elevation="2dp"
|
||||
android:outlineProvider="none"
|
||||
android:elevation="@dimen/arrow_toast_elevation"
|
||||
android:layout_width="@dimen/arrow_toast_arrow_width"
|
||||
android:layout_height="10dp"/>
|
||||
</merge>
|
||||
|
||||
@@ -18,7 +18,8 @@
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:launcher="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="@dimen/bg_popup_item_width"
|
||||
android:layout_height="@dimen/bg_popup_item_height"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="@dimen/bg_popup_item_height"
|
||||
android:elevation="@dimen/deep_shortcuts_elevation"
|
||||
android:background="@drawable/middle_item_primary"
|
||||
android:theme="@style/PopupItem" >
|
||||
|
||||
47
res/layout/system_shortcut_content.xml
Normal file
47
res/layout/system_shortcut_content.xml
Normal file
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2021 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.
|
||||
-->
|
||||
<merge
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:launcher="http://schemas.android.com/apk/res-auto" >
|
||||
|
||||
<com.android.launcher3.BubbleTextView
|
||||
style="@style/BaseIconUnBounded"
|
||||
android:id="@+id/bubble_text"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:gravity="start|center_vertical"
|
||||
android:paddingTop="@dimen/bg_popup_item_vertical_padding"
|
||||
android:paddingBottom="@dimen/bg_popup_item_vertical_padding"
|
||||
android:minHeight="@dimen/bg_popup_item_height"
|
||||
android:textAlignment="viewStart"
|
||||
android:paddingStart="@dimen/deep_shortcuts_text_padding_start"
|
||||
android:paddingEnd="@dimen/popup_padding_end"
|
||||
android:textSize="14sp"
|
||||
android:minLines="1"
|
||||
android:maxLines="2"
|
||||
android:ellipsize="end"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
launcher:iconDisplay="shortcut_popup"
|
||||
launcher:layoutHorizontal="true"
|
||||
android:focusable="false" />
|
||||
|
||||
<View
|
||||
android:id="@+id/icon"
|
||||
android:layout_width="@dimen/system_shortcut_icon_size"
|
||||
android:layout_height="@dimen/system_shortcut_icon_size"
|
||||
android:layout_marginStart="@dimen/system_shortcut_margin_start"
|
||||
android:layout_gravity="start|center_vertical"
|
||||
android:backgroundTint="?android:attr/textColorPrimary"/>
|
||||
</merge>
|
||||
@@ -28,7 +28,7 @@
|
||||
android:layout_marginTop="40dp"
|
||||
android:text="@string/work_apps_paused_title"
|
||||
android:textAlignment="center"
|
||||
android:textSize="22sp" />
|
||||
android:textSize="18sp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
<dimen name="all_apps_tip_bottom_margin">8dp</dimen>
|
||||
<!-- The size of corner radius of the arrow in the arrow toast. -->
|
||||
<dimen name="arrow_toast_corner_radius">2dp</dimen>
|
||||
<dimen name="arrow_toast_elevation">2dp</dimen>
|
||||
<dimen name="arrow_toast_arrow_width">10dp</dimen>
|
||||
|
||||
<!-- Search bar in All Apps -->
|
||||
@@ -241,6 +242,7 @@
|
||||
<dimen name="bg_popup_padding">2dp</dimen>
|
||||
<dimen name="bg_popup_item_width">216dp</dimen>
|
||||
<dimen name="bg_popup_item_height">56dp</dimen>
|
||||
<dimen name="bg_popup_item_vertical_padding">12dp</dimen>
|
||||
<dimen name="pre_drag_view_scale">6dp</dimen>
|
||||
<!-- an icon with shortcuts must be dragged this far before the container is removed. -->
|
||||
<dimen name="deep_shortcuts_start_drag_threshold">16dp</dimen>
|
||||
@@ -333,4 +335,5 @@
|
||||
<dimen name="search_row_icon_size">48dp</dimen>
|
||||
<dimen name="search_row_small_icon_size">32dp</dimen>
|
||||
<dimen name="padded_rounded_button_padding">8dp</dimen>
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user