Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7fa5cb4 authored by Coco Duan's avatar Coco Duan Committed by Android (Google) Code Review
Browse files

Merge "[Overlay] Adjust Home Controls button size" into tm-qpr-dev

parents c1ed09a3 fb8fa923
Loading
Loading
Loading
Loading
+28 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright 2023, 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.
*/
-->
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
    android:shape="rectangle">
  <solid android:color="?androidprv:attr/colorSurface"/>
  <size
      android:width="@dimen/dream_overlay_bottom_affordance_height"
      android:height="@dimen/dream_overlay_bottom_affordance_width"/>
  <corners android:radius="@dimen/dream_overlay_bottom_affordance_radius" />
</shape>
+5 −4
Original line number Original line Diff line number Diff line
@@ -22,13 +22,14 @@


    <com.android.systemui.animation.view.LaunchableImageView
    <com.android.systemui.animation.view.LaunchableImageView
        android:id="@+id/home_controls_chip"
        android:id="@+id/home_controls_chip"
        android:layout_height="@dimen/keyguard_affordance_fixed_height"
        android:layout_height="@dimen/dream_overlay_bottom_affordance_height"
        android:layout_width="@dimen/keyguard_affordance_fixed_width"
        android:layout_width="@dimen/dream_overlay_bottom_affordance_width"
        android:layout_gravity="bottom|start"
        android:layout_gravity="bottom|start"
        android:scaleType="center"
        android:padding="@dimen/dream_overlay_bottom_affordance_padding"
        android:background="@drawable/dream_overlay_bottom_affordance_bg"
        android:scaleType="fitCenter"
        android:tint="?android:attr/textColorPrimary"
        android:tint="?android:attr/textColorPrimary"
        android:src="@drawable/controls_icon"
        android:src="@drawable/controls_icon"
        android:background="@drawable/keyguard_bottom_affordance_bg"
        android:contentDescription="@string/quick_controls_title" />
        android:contentDescription="@string/quick_controls_title" />


</FrameLayout>
</FrameLayout>
+4 −0
Original line number Original line Diff line number Diff line
@@ -1585,6 +1585,10 @@
    <!-- Dream overlay complications related dimensions -->
    <!-- Dream overlay complications related dimensions -->
    <!-- The blur radius applied to the dream overlay when entering and exiting dreams -->
    <!-- The blur radius applied to the dream overlay when entering and exiting dreams -->
    <dimen name="dream_overlay_anim_blur_radius">50dp</dimen>
    <dimen name="dream_overlay_anim_blur_radius">50dp</dimen>
    <dimen name="dream_overlay_bottom_affordance_height">64dp</dimen>
    <dimen name="dream_overlay_bottom_affordance_width">64dp</dimen>
    <dimen name="dream_overlay_bottom_affordance_radius">32dp</dimen>
    <dimen name="dream_overlay_bottom_affordance_padding">14dp</dimen>
    <dimen name="dream_overlay_complication_clock_time_text_size">86dp</dimen>
    <dimen name="dream_overlay_complication_clock_time_text_size">86dp</dimen>
    <dimen name="dream_overlay_complication_clock_time_translation_y">28dp</dimen>
    <dimen name="dream_overlay_complication_clock_time_translation_y">28dp</dimen>
    <dimen name="dream_overlay_complication_home_controls_padding">28dp</dimen>
    <dimen name="dream_overlay_complication_home_controls_padding">28dp</dimen>