habitica-android/Habitica/res/layout/mount_imageview.xml
2023-09-14 21:40:22 +02:00

17 lines
758 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="124dp"
android:layout_gravity="center"
android:background="@drawable/layout_rounded_bg_content"
android:clipToPadding="true"
android:clipChildren="true">
<androidx.compose.ui.platform.ComposeView
android:id="@+id/background_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.habitrpg.android.habitica.ui.views.stable.MountView
android:id="@+id/mount_imageview"
android:layout_width="81dp"
android:layout_height="99dp"
android:layout_gravity="center" />
</FrameLayout>