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"
|
2017-09-27 12:54:50 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-03-10 13:05:32 +00:00
|
|
|
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
|
|
|
|
2018-08-29 15:44:16 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/gear_icon_background_view"
|
|
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="80dp"
|
|
|
|
|
android:layout_marginRight="@dimen/row_padding">
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
|
|
|
|
android:id="@+id/gear_image"
|
|
|
|
|
app:actualImageScaleType="fitCenter"/>
|
|
|
|
|
</FrameLayout>
|
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" />
|
2018-08-29 15:44:16 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/two_handed_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/two_handed"
|
|
|
|
|
android:textColor="@color/brand_400"
|
|
|
|
|
android:drawablePadding="@dimen/spacing_small"/>
|
2016-03-10 13:05:32 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|