2016-03-10 13:05:32 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-28 16:43:15 +00:00
|
|
|
style="@style/RowWrapper"
|
2016-03-10 13:34:35 +00:00
|
|
|
android:id="@+id/gear_container">
|
2016-03-10 13:05:32 +00:00
|
|
|
|
2016-11-19 11:29:45 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2016-03-10 13:05:32 +00:00
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:id="@+id/gear_image"
|
|
|
|
|
android:layout_marginRight="@dimen/row_padding" />
|
2016-03-10 13:05:32 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical">
|
2016-03-10 13:05:32 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/gear_text"
|
2016-03-16 12:52:42 +00:00
|
|
|
style="@style/RowTitle" />
|
2016-03-10 13:05:32 +00:00
|
|
|
|
2016-03-10 13:34:35 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/equipped"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:id="@+id/equippedIndicator"
|
|
|
|
|
style="@style/RowText.unimportant"/>
|
2016-03-10 13:34:35 +00:00
|
|
|
|
2016-03-10 13:05:32 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2016-03-16 12:52:42 +00:00
|
|
|
android:id="@+id/gear_notes"
|
|
|
|
|
style="@style/RowText" />
|
2016-03-10 13:05:32 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|