mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
89 lines
2.4 KiB
XML
89 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="left"
|
|
>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/heroinfo_wornequipment"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
>
|
|
|
|
<include layout="@layout/heroinfo_equipped" />
|
|
|
|
<include layout="@layout/heroinfo_statsicons" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="left"
|
|
>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
>
|
|
<Spinner
|
|
android:id="@+id/inventorylist_category_filters"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="left"
|
|
android:orientation="horizontal"
|
|
android:prompt="@string/heroinfo_inventory_categories"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="5dp" />
|
|
|
|
<Spinner
|
|
android:id="@+id/inventorylist_sort_filters"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_toRightOf="@+id/inventorylist_category_filters"
|
|
android:prompt="@string/heroinfo_inventory_sort"
|
|
android:layout_margin="@dimen/dialog_margin"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginLeft="5dp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/heroinfo_inventory"
|
|
/>
|
|
|
|
<ListView
|
|
android:id="@+id/inventorylist_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|