Files
packages_apps_Evolver/res/layout/keyguard_clock_minimal3.xml
Subratam6296 48a7fcfb74 Evolver: Lockscreen: Add more LS Clocks [2/2]
Signed-off-by: Subratam6296 <padraramesh420@gmail.com>
Change-Id: I6399e0e30f81d409d723e6e9324e1dd92b5813bf
2025-06-11 02:36:28 +09:00

76 lines
2.6 KiB
XML

<?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="140dp"
android:layout_marginTop="30dp"
android:gravity="center_horizontal">
<!-- Time and Day Circles and Texts -->
<ImageView
android:id="@+id/timeCircle1"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_marginEnd="5dp"
android:src="@drawable/circle"
android:tint="#FF004D"/>
<TextClock
android:id="@+id/timeTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format12Hour="h:mm a"
android:fontFamily="@font/steelfish-rounded-bd"
android:textSize="30sp"
android:textColor="@android:color/white"
android:layout_toEndOf="@id/timeCircle1"
android:layout_marginStart="5dp"/>
<ImageView
android:id="@+id/timeCircle2"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_marginEnd="5dp"
android:layout_below="@id/timeTextView"
android:layout_marginTop="5dp"
android:src="@drawable/circle"
android:tint="#F8DE22"/>
<TextClock
android:id="@+id/dayTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format12Hour="EEEE"
android:fontFamily="@font/steelfish-rounded-bd"
android:textSize="30sp"
android:textColor="@android:color/white"
android:layout_toEndOf="@id/timeCircle2"
android:layout_marginStart="5dp"
android:layout_below="@id/timeTextView"
android:layout_marginTop="5dp"/>
<ImageView
android:id="@+id/timeCircle3"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_marginEnd="5dp"
android:layout_below="@id/dayTextView"
android:layout_marginTop="5dp"
android:src="@drawable/circle"
android:tint="#00AD7C"/>
<TextClock
android:id="@+id/dateTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format12Hour="MMM.dd"
android:fontFamily="@font/steelfish-rounded-bd"
android:textSize="30sp"
android:textColor="@android:color/white"
android:layout_toEndOf="@id/timeCircle3"
android:layout_marginStart="5dp"
android:layout_below="@id/dayTextView"
android:layout_marginTop="5dp"/>
</RelativeLayout>