Files
packages_apps_Evolver/res/layout/boot_animation_preview.xml
minaripenguin b8ebe4f904 Evolver: Introduce boot animation styles [3/3]
Co-authored-by: Alvin Francis <nivlafx@gmail.com>
Co-authored-by: Joey Huab <jhuab@edukasyon.ph>
Co-authored-by: AnierinB <anierin@evolution-x.org>
Co-authored-by: 0xsharkboy <achille@0xsharkboy.dev>
Signed-off-by: minaripenguin <minaripenguin@users.noreply.github.com>
Signed-off-by: AnierinB <anierin@evolution-x.org>
2025-06-11 02:36:28 +09:00

24 lines
889 B
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="wrap_content"
android:padding="16dp">
<ImageView
android:id="@+id/boot_animation_preview_image"
android:layout_width="match_parent"
android:layout_marginHorizontal="60dp"
android:layout_height="300dp"
android:scaleType="centerCrop"
android:contentDescription="@string/boot_animation_preview_desc"
android:background="@drawable/preview_bg"
android:clipToOutline="true" />
<ProgressBar
android:id="@+id/boot_animation_loading_spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone" />
</RelativeLayout>