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"
|
|
|
|
|
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">
|
2015-11-15 16:22:05 +00:00
|
|
|
<ImageView
|
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"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
|
|
<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>
|