2015-11-15 16:22:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-05-23 06:02:00 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:orientation="vertical" android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="111dp"
|
|
|
|
|
android:layout_height="114dp"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_large"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:background="@drawable/avatar_border"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_large">
|
|
|
|
|
<com.habitrpg.android.habitica.ui.AvatarView
|
|
|
|
|
android:layout_width="94dp"
|
|
|
|
|
android:layout_height="98dp"
|
|
|
|
|
android:id="@+id/avatarView"
|
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
2015-11-15 16:22:05 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-12 13:47:14 +00:00
|
|
|
android:text="@string/levelup_detail"
|
2019-05-17 17:30:05 +00:00
|
|
|
style="@style/Body2"
|
2018-11-12 13:47:14 +00:00
|
|
|
android:gravity="center_horizontal"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"/>
|
2015-11-15 16:22:05 +00:00
|
|
|
</LinearLayout>
|