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"
|
|
|
|
|
android:padding="@dimen/row_padding"
|
2016-03-10 13:34:35 +00:00
|
|
|
android:background="@drawable/selection_highlight"
|
|
|
|
|
android:id="@+id/gear_container">
|
2016-03-10 13:05:32 +00:00
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
|
|
|
|
android:id="@+id/gear_image" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/gear_text"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
2016-03-10 13:34:35 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
|
android:text="@string/equipped"
|
|
|
|
|
android:id="@+id/equippedIndicator" />
|
|
|
|
|
|
2016-03-10 13:05:32 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/gear_notes" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|