2017-10-17 17:18:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_gray_700"
|
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
|
android:layout_marginRight="16dp">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/titleWrapper"
|
|
|
|
|
android:layout_width="match_parent"
|
2017-10-17 19:23:06 +00:00
|
|
|
android:layout_height="43dp"
|
|
|
|
|
tools:background="@drawable/layout_rounded_bg_green">
|
2017-10-17 17:18:34 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@id/titleTextView"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
tools:text="Strength"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
style="@style/Headline"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:layout_marginLeft="12dp"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/totalValueTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:text="130"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
style="@style/Headline"
|
2017-10-17 19:23:06 +00:00
|
|
|
android:textStyle="bold"
|
2017-10-17 17:18:34 +00:00
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="61dp">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/levelValueTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-17 19:23:06 +00:00
|
|
|
style="@style/Subheader2"
|
|
|
|
|
android:textSize="20sp"
|
2017-10-17 17:18:34 +00:00
|
|
|
tools:text="20"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/level"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/equipmentValueTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-17 19:23:06 +00:00
|
|
|
style="@style/Subheader2"
|
|
|
|
|
android:textSize="20sp"
|
2017-10-17 17:18:34 +00:00
|
|
|
tools:text="20"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-24 11:00:20 +00:00
|
|
|
android:text="@string/sidebar_equipment"
|
2017-10-17 17:18:34 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/buffValueTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-17 19:23:06 +00:00
|
|
|
style="@style/Subheader2"
|
|
|
|
|
android:textSize="20sp"
|
2017-10-17 17:18:34 +00:00
|
|
|
tools:text="20"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/buffs"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/allocatedWrapper"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/allocatedValueTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-17 19:23:06 +00:00
|
|
|
style="@style/Subheader2"
|
|
|
|
|
android:textSize="20sp"
|
2017-10-17 17:18:34 +00:00
|
|
|
tools:text="20"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
<TextView
|
2017-10-17 19:23:06 +00:00
|
|
|
android:id="@+id/allocatedLabelView"
|
2017-10-17 17:18:34 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/allocated"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<ImageButton
|
|
|
|
|
android:id="@+id/allocateButton"
|
|
|
|
|
android:layout_width="48dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|