Files
andors-trail/AndorsTrail/res/layout/questlog.xml
Zukero b57f847b09 Nice combo boxes, erm, spinners, emulated through a button and a dialog.
Dual-sized heroes.
Did "Organize imports" in eclipse on the whole project, so almost all
java files are changed, but not by much.
2017-11-08 18:36:17 +01:00

45 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/AndorsTrail_Blue_TabFrame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
style="@style/AndorsTrail_Blue_StdFrame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:orientation="horizontal" >
<Button
android:id="@+id/questlog_includecompleted_button"
style="@style/AndorsTrail_Blue_SpinnerEmulator"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="left"
android:text="" />
<!--
<Spinner
android:id="@+id/questlog_includecompleted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:prompt="@string/questlog_includecompleted_prompt" />
-->
</LinearLayout>
<LinearLayout
style="@style/AndorsTrail_Blue_StdFrame"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ExpandableListView
android:id="@+id/questlog_contents"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" />
</LinearLayout>
</LinearLayout>