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"
|
2015-11-15 16:22:05 +00:00
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
2016-04-12 16:54:28 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:paddingLeft="24dip"
|
|
|
|
|
android:paddingEnd="24dip"
|
|
|
|
|
android:paddingStart="24dip"
|
|
|
|
|
android:paddingRight="24dip">
|
2016-05-23 06:02:00 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.AvatarView
|
2016-01-20 14:44:40 +00:00
|
|
|
android:layout_width="@dimen/avatar_small_width"
|
|
|
|
|
android:layout_height="@dimen/avatar_small_height"
|
2015-11-15 16:22:05 +00:00
|
|
|
android:id="@+id/avatarView"
|
2016-05-23 06:02:00 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
app:showBackground="false"
|
|
|
|
|
app:showMount="false"
|
|
|
|
|
app:showPet="false" />
|
2015-11-15 16:22:05 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/levelupDetail"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/levelup_health"
|
|
|
|
|
android:id="@+id/textView11" />
|
|
|
|
|
</LinearLayout>
|