mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/layout_rounded_bg_window"
|
|
android:layout_marginHorizontal="12dp"
|
|
android:clipToOutline="true">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="@dimen/spacing_large"
|
|
android:paddingHorizontal="@dimen/spacing_large"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/title_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text_secondary"
|
|
style="@style/Body1"/>
|
|
<TextView
|
|
android:id="@+id/description_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text_ternary"
|
|
style="@style/Body2"
|
|
android:gravity="center"/>
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
|
android:id="@+id/icon_view"
|
|
android:layout_width="68dp"
|
|
android:layout_height="68dp" />
|
|
</LinearLayout>
|
|
<FrameLayout
|
|
android:id="@+id/footer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/offset_background_30"
|
|
android:padding="8dp">
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
|
android:id="@+id/currency_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:textColor="@color/text_quad"
|
|
tools:text="150"
|
|
style="@style/Body1"
|
|
android:textSize="15sp"
|
|
app:currency="gold" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|