mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-26 07:42:53 +00:00
22 lines
892 B
XML
22 lines
892 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
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.common.habitica.views.PixelArtView
|
|
android:id="@+id/pet_imageview"
|
|
android:layout_width="68dp"
|
|
android:layout_height="68dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="12dp"
|
|
tools:background="@color/red_10"
|
|
/>
|
|
</FrameLayout>
|