habitica-android/Habitica/res/layout/dialog_purchase_customization.xml

35 lines
1.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2022-05-04 15:55:07 +00:00
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
2024-04-05 13:14:31 +00:00
android:layout_height="match_parent"
android:paddingStart="@dimen/shopitem_dialog_content_inset"
android:paddingEnd="@dimen/shopitem_dialog_content_inset"
tools:parentTag="LinearLayout"
tools:orientation="vertical">
2024-04-05 13:14:31 +00:00
<com.habitrpg.common.habitica.views.AvatarView
android:id="@+id/avatar_view"
android:layout_width="@dimen/avatar_width"
android:layout_height="@dimen/avatar_height"
android:layout_marginTop="24dp"/>
2020-04-09 12:25:54 +00:00
<TextView
2022-05-04 15:55:07 +00:00
android:id="@+id/titleTextView"
2020-04-09 12:25:54 +00:00
android:layout_width="match_parent"
2022-05-04 15:55:07 +00:00
android:layout_height="wrap_content"
style="@style/Headline"
android:textColor="@color/text_primary"
tools:text="This is the Title"
android:gravity="center"
android:layout_marginTop="14dp"
android:layout_marginBottom="4dp"/>
2024-04-05 13:14:31 +00:00
<TextView
android:id="@+id/notesTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Body2"
android:textColor="@color/text_ternary"
tools:text="These are the notes"
android:gravity="center"/>
2022-05-04 15:55:07 +00:00
</merge>