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

Commit 6b2eac6f authored by Lucas Dupin's avatar Lucas Dupin Committed by Automerger Merge Worker
Browse files

Merge "Set WeatherDate view to gone on tablets to better align smartspace"...

Merge "Set WeatherDate view to gone on tablets to better align smartspace" into udc-dev am: 94167b4c am: a9a531f9 am: 17cab2ac

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23296161



Change-Id: I1cb1bad66d27782e22b375d8bc96bbf4aa4722af
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 072faa26 17cab2ac
Loading
Loading
Loading
Loading
+20 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 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.
  -->
<resources>
     <!-- Invisibility to use for the date & weather view when it is disabled by a clock -->
    <integer name="keyguard_date_weather_view_invisibility">8</integer>
</resources>
+3 −0
Original line number Original line Diff line number Diff line
@@ -27,4 +27,7 @@


         0x50 = bottom, 0x01 = center_horizontal -->
         0x50 = bottom, 0x01 = center_horizontal -->
    <integer name="keyguard_host_view_one_handed_gravity">0x51</integer>
    <integer name="keyguard_host_view_one_handed_gravity">0x51</integer>

     <!-- Invisibility to use for the date & weather view when it is disabled by a clock -->
    <integer name="keyguard_date_weather_view_invisibility">4</integer>
</resources>
</resources>
+9 −2
Original line number Original line Diff line number Diff line
@@ -86,6 +86,7 @@ public class KeyguardClockSwitchController extends ViewController<KeyguardClockS


    private int mKeyguardSmallClockTopMargin = 0;
    private int mKeyguardSmallClockTopMargin = 0;
    private int mKeyguardLargeClockTopMargin = 0;
    private int mKeyguardLargeClockTopMargin = 0;
    private int mKeyguardDateWeatherViewInvisibility = View.INVISIBLE;
    private final ClockRegistry.ClockChangeListener mClockChangedListener;
    private final ClockRegistry.ClockChangeListener mClockChangedListener;


    private ViewGroup mStatusArea;
    private ViewGroup mStatusArea;
@@ -201,6 +202,8 @@ public class KeyguardClockSwitchController extends ViewController<KeyguardClockS
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_clock_top_margin);
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_clock_top_margin);
        mKeyguardLargeClockTopMargin =
        mKeyguardLargeClockTopMargin =
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin);
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin);
        mKeyguardDateWeatherViewInvisibility =
                mView.getResources().getInteger(R.integer.keyguard_date_weather_view_invisibility);


        if (mOnlyClock) {
        if (mOnlyClock) {
            View ksv = mView.findViewById(R.id.keyguard_slice_view);
            View ksv = mView.findViewById(R.id.keyguard_slice_view);
@@ -335,7 +338,10 @@ public class KeyguardClockSwitchController extends ViewController<KeyguardClockS
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_clock_top_margin);
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_clock_top_margin);
        mKeyguardLargeClockTopMargin =
        mKeyguardLargeClockTopMargin =
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin);
                mView.getResources().getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin);
        mKeyguardDateWeatherViewInvisibility =
                mView.getResources().getInteger(R.integer.keyguard_date_weather_view_invisibility);
        mView.updateClockTargetRegions();
        mView.updateClockTargetRegions();
        setDateWeatherVisibility();
    }
    }




@@ -489,8 +495,9 @@ public class KeyguardClockSwitchController extends ViewController<KeyguardClockS
    private void setDateWeatherVisibility() {
    private void setDateWeatherVisibility() {
        if (mDateWeatherView != null) {
        if (mDateWeatherView != null) {
            mUiExecutor.execute(() -> {
            mUiExecutor.execute(() -> {
                mDateWeatherView.setVisibility(
                mDateWeatherView.setVisibility(clockHasCustomWeatherDataDisplay()
                        clockHasCustomWeatherDataDisplay() ? View.INVISIBLE : View.VISIBLE);
                        ? mKeyguardDateWeatherViewInvisibility
                        : View.VISIBLE);
            });
            });
        }
        }
    }
    }
+2 −0
Original line number Original line Diff line number Diff line
@@ -150,6 +150,8 @@ public class KeyguardClockSwitchControllerTest extends SysuiTestCase {
                .thenReturn(100);
                .thenReturn(100);
        when(mResources.getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin))
        when(mResources.getDimensionPixelSize(R.dimen.keyguard_large_clock_top_margin))
                .thenReturn(-200);
                .thenReturn(-200);
        when(mResources.getInteger(R.integer.keyguard_date_weather_view_invisibility))
                .thenReturn(View.INVISIBLE);


        when(mView.findViewById(R.id.lockscreen_clock_view_large)).thenReturn(mLargeClockFrame);
        when(mView.findViewById(R.id.lockscreen_clock_view_large)).thenReturn(mLargeClockFrame);
        when(mView.findViewById(R.id.lockscreen_clock_view)).thenReturn(mSmallClockFrame);
        when(mView.findViewById(R.id.lockscreen_clock_view)).thenReturn(mSmallClockFrame);