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

Commit e1b65b2f authored by Matt Pietal's avatar Matt Pietal
Browse files

Delete unused layout files

That's all

Bug: 383304368
Test: manual
Flag: EXEMPT cleanup
Change-Id: Ib17354385506836f9cabadcda221316cf8369ce1
parent 1b7e6bd5
Loading
Loading
Loading
Loading
+0 −30
Original line number Original line Diff line number Diff line
<?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>
+0 −39
Original line number Original line Diff line number Diff line
<?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>