2017-10-22 18:17:09 +00:00
|
|
|
<?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"
|
|
|
|
android:weightSum="1">
|
|
|
|
|
2017-10-26 01:33:38 +00:00
|
|
|
<TextView
|
2017-10-22 18:17:09 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-10-26 01:33:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/from_capital"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etFrom"
|
2017-10-22 18:17:09 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-10-26 01:33:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
<TextView
|
2017-10-22 18:17:09 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-10-26 01:33:38 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-11-01 16:26:52 +00:00
|
|
|
android:id="@+id/tvFromError"
|
|
|
|
android:textColor="@color/red" />
|
2017-10-26 01:33:38 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/to_capital"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etTo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-01 16:26:52 +00:00
|
|
|
android:id="@+id/tvToError"
|
|
|
|
android:textColor="@color/red" />
|
2017-10-26 01:33:38 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Asset"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/spAsset"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-01 16:26:52 +00:00
|
|
|
android:id="@+id/tvAssetError"
|
|
|
|
android:textColor="@color/red" />
|
2017-10-26 01:33:38 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/amount"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etAmount"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-01 16:26:52 +00:00
|
|
|
android:id="@+id/tvAmountError"
|
|
|
|
android:textColor="@color/red" />
|
2017-10-26 01:33:38 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/memo_capital"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etMemo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-01 16:26:52 +00:00
|
|
|
android:id="@+id/tvMemoError"
|
|
|
|
android:textColor="@color/red" />
|
2017-10-26 01:33:38 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnCancel"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/cancel">
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btnSend"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/send_capital">
|
|
|
|
</Button>
|
2017-10-22 18:17:09 +00:00
|
|
|
</LinearLayout>
|