2010-11-08 16:08:02 +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">
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Ticker" />
|
|
|
|
|
|
|
|
<EditText android:id="@+id/addPositionTicker"
|
2011-04-08 03:23:39 +00:00
|
|
|
android:inputType="textCapCharacters"
|
2010-11-08 16:08:02 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="# of shares" />
|
|
|
|
|
|
|
|
<EditText android:id="@+id/addPositionShares"
|
2011-04-08 03:23:39 +00:00
|
|
|
android:inputType="numberDecimal"
|
2010-11-08 16:08:02 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Price per share" />
|
|
|
|
|
|
|
|
<EditText android:id="@+id/addPositionPrice"
|
2011-04-08 03:23:39 +00:00
|
|
|
android:inputType="numberDecimal"
|
2010-11-08 16:08:02 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<Button android:text="Save" android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent" android:id="@+id/addPositionSaveButton" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|