Files
packages_apps_Evolver/res/layout/lockscreen_preview.xml
703joko c501dd70b1 Evolver: Lockscreen: Introduce Lockscreen Clock Styles [2/2]
* designed by Corex1402
* refactored by: rmp

Change-Id: Idb5fdf7af497c1e1a58f9cc04a591e4718389589
Signed-off-by: minaripenguin <minaripenguin@users.noreply.github.com>
2025-06-11 02:36:28 +09:00

34 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center"
android:background="@android:color/transparent"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginHorizontal="20dp">
<FrameLayout
android:gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.crdroid.settings.utils.WallpaperView
android:gravity="center"
android:orientation="vertical"
android:background="@drawable/preview_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/preview_bg"
android:scaleType="centerCrop"
android:elevation="0dp"
android:clipToOutline="true"/>
<include
android:gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/keyguard_clock_style"/>
</FrameLayout>
</LinearLayout>