mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-26 19:34:49 +00:00
issue 3 - added inputTypes to EditPortfolio layout to improve usability (thanks correl)
This commit is contained in:
parent
77515d0fb1
commit
d9959b0867
1 changed files with 4 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
|||
android:text="Ticker" />
|
||||
|
||||
<EditText android:id="@+id/addPositionTicker"
|
||||
android:inputType="textCapCharacters"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
@ -20,14 +21,17 @@
|
|||
android:text="# of shares" />
|
||||
|
||||
<EditText android:id="@+id/addPositionShares"
|
||||
android:inputType="numberDecimal"
|
||||
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"
|
||||
android:inputType="numberDecimal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
|
Loading…
Reference in a new issue