diff options
author | 2025-02-25 21:10:16 +0000 | |
---|---|---|
committer | 2025-02-25 13:16:42 -0800 | |
commit | e1b65b2fa2ec16f369017317ab8205be31103966 (patch) | |
tree | 857bac1c4b8407d643b480e326585a9e4ac8b105 | |
parent | 1b7e6bd5b6b01542aacc76e4982327305a86fa44 (diff) |
Delete unused layout files
That's all
Bug: 383304368
Test: manual
Flag: EXEMPT cleanup
Change-Id: Ib17354385506836f9cabadcda221316cf8369ce1
-rw-r--r-- | packages/SystemUI/res-keyguard/layout/default_clock_preview.xml | 30 | ||||
-rw-r--r-- | packages/SystemUI/res-keyguard/layout/digital_clock.xml | 39 |
2 files changed, 0 insertions, 69 deletions
diff --git a/packages/SystemUI/res-keyguard/layout/default_clock_preview.xml b/packages/SystemUI/res-keyguard/layout/default_clock_preview.xml deleted file mode 100644 index 3e6dd13e4b9f..000000000000 --- a/packages/SystemUI/res-keyguard/layout/default_clock_preview.xml +++ /dev/null @@ -1,30 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<RelativeLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="match_parent" - > - <TextClock - android:id="@+id/time" - style="@style/widget_big" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_above="@id/date" - android:letterSpacing="0.03" - android:gravity="center_horizontal" - android:format12Hour="@string/keyguard_widget_12_hours_format" - android:format24Hour="@string/keyguard_widget_24_hours_format" - /> - - <TextClock - android:id="@+id/date" - style="@stype/widget_big" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_centerInParent="true" - android:letterSpacing="0.03" - android:gravity="center_horizontal" - android:format12Hour="EEE, MMM d" - android:format24Hour="EEE, MMM d" - /> -</RelativeLayout> diff --git a/packages/SystemUI/res-keyguard/layout/digital_clock.xml b/packages/SystemUI/res-keyguard/layout/digital_clock.xml deleted file mode 100644 index 38ee081b8327..000000000000 --- a/packages/SystemUI/res-keyguard/layout/digital_clock.xml +++ /dev/null @@ -1,39 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- - Copyright (C) 2019 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. - --> -<FrameLayout - xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_gravity="center_horizontal" - android:layout_alignParentTop="true"> - <TextClock - android:id="@+id/lock_screen_clock" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_gravity="center_horizontal" - android:gravity="center_horizontal" - android:paddingBottom="@dimen/widget_vertical_padding_clock" - android:letterSpacing="0.03" - android:textColor="?attr/wallpaperTextColor" - android:singleLine="true" - style="@style/widget_small_bold" - android:format12Hour="@string/keyguard_widget_12_hours_format" - android:format24Hour="@string/keyguard_widget_24_hours_format" - android:elegantTextHeight="false" - /> -</FrameLayout> - |