2010-11-02 16:26:36 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
2011-01-02 20:47:12 +00:00
|
|
|
<Button android:id="@+id/btnAddPosition"
|
|
|
|
android:text="Add Position"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent" />
|
2010-11-08 16:08:02 +00:00
|
|
|
|
2011-01-02 20:47:12 +00:00
|
|
|
<LinearLayout android:id="@+id/quoteHeaderLayout"
|
2010-11-08 16:08:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-01-02 20:47:12 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:orientation="horizontal" />
|
2011-01-02 01:16:08 +00:00
|
|
|
|
2011-01-02 20:47:12 +00:00
|
|
|
<ListView android:id="@+id/quoteListview"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2010-11-02 16:26:36 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|