2017-04-20 13:33:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-02-11 11:57:16 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/content_wrapper"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-20 13:33:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2018-11-07 14:17:25 +00:00
|
|
|
android:background="@color/setup_background"
|
2017-04-20 13:33:33 +00:00
|
|
|
android:gravity="center_horizontal">
|
2019-11-07 17:04:06 +00:00
|
|
|
<Space
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
2017-04-20 13:33:33 +00:00
|
|
|
<ImageView
|
2019-11-07 17:04:06 +00:00
|
|
|
android:id="@+id/heart_icon"
|
|
|
|
|
android:layout_height="36dp"
|
|
|
|
|
android:layout_width="36dp" />
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/setup_vertical_spacing">
|
|
|
|
|
<ImageView
|
2017-04-20 13:33:33 +00:00
|
|
|
android:id="@+id/avatar_background"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/creator_purple_bg"
|
2019-11-07 17:04:06 +00:00
|
|
|
android:layout_centerInParent="true" />
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.AvatarView
|
2017-04-20 13:33:33 +00:00
|
|
|
android:id="@+id/avatarView"
|
|
|
|
|
android:layout_width="@dimen/avatar_small_width"
|
|
|
|
|
android:layout_height="@dimen/avatar_small_height"
|
|
|
|
|
app:showBackground="false"
|
|
|
|
|
app:showMount="false"
|
|
|
|
|
app:showPet="false"
|
|
|
|
|
app:showSleeping="false"
|
|
|
|
|
android:layout_alignTop="@id/avatar_background"
|
2019-11-07 17:04:06 +00:00
|
|
|
android:layout_marginStart="54dp"
|
|
|
|
|
/>
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
<Space
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
<com.habitrpg.android.habitica.ui.SpeechBubbleView
|
|
|
|
|
android:id="@+id/speech_bubble"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:namePlate="Justin"
|
|
|
|
|
app:npcDrawable="@drawable/justin_textbox"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/content_inset"
|
|
|
|
|
android:layout_marginEnd="@dimen/content_inset"
|
2019-11-07 17:04:06 +00:00
|
|
|
android:layout_marginBottom="12dp"/>
|
2025-03-17 12:13:00 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-04-20 13:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="230dp"
|
|
|
|
|
android:background="@drawable/avatar_customization_category_bg"
|
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:padding="17dp"/>
|
2025-01-30 10:29:45 +00:00
|
|
|
</LinearLayout>
|