2019-10-20 21:52:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-25 18:18:08 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:padding="@dimen/dialog_transfer_money_padding"
|
|
|
|
android:isScrollContainer="true"
|
|
|
|
>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
2020-01-03 12:55:29 +00:00
|
|
|
<LinearLayout
|
2020-01-25 18:18:08 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-03 12:55:29 +00:00
|
|
|
>
|
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/lytSelectBankAccount"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_input_fields_height"
|
|
|
|
android:layout_marginBottom="@dimen/dialog_transfer_money_bank_accounts_margin_bottom"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:visibility="gone"
|
|
|
|
>
|
2020-01-03 12:55:29 +00:00
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:text="@string/dialog_transfer_money_account"
|
|
|
|
android:layout_marginRight="@dimen/dialog_transfer_money_label_margin_right"
|
|
|
|
android:layout_marginEnd="@dimen/dialog_transfer_money_label_margin_right"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/spnBankAccounts"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-01-03 12:55:29 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2020-01-25 18:18:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/dialog_transfer_money_remittee_name"
|
2019-10-20 21:52:07 +00:00
|
|
|
>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2020-01-25 18:18:08 +00:00
|
|
|
android:id="@+id/edtxtRemitteeName"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_input_fields_height"
|
|
|
|
android:inputType="textPersonName"
|
2019-10-20 21:52:07 +00:00
|
|
|
>
|
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
<requestFocus />
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputEditText>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2020-01-25 18:18:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/dialog_transfer_money_remittee_iban"
|
2019-10-20 21:52:07 +00:00
|
|
|
>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2020-01-25 18:18:08 +00:00
|
|
|
android:id="@+id/edtxtRemitteeIban"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_autocomplete_fields_height"
|
|
|
|
android:inputType="text"
|
2019-10-20 21:52:07 +00:00
|
|
|
/>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2020-01-11 22:23:44 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-01-25 18:18:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/dialog_transfer_money_remittee_bank"
|
|
|
|
>
|
2020-01-11 22:23:44 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2020-01-25 18:18:08 +00:00
|
|
|
android:id="@+id/edtxtRemitteeBank"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_input_fields_height"
|
|
|
|
android:inputType="text"
|
|
|
|
android:enabled="false"
|
|
|
|
/>
|
2020-01-11 22:23:44 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2020-01-11 22:23:44 +00:00
|
|
|
|
2019-10-20 21:52:07 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2019-10-20 21:52:07 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-01-25 18:18:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/dialog_transfer_money_remittee_bic"
|
|
|
|
>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2020-01-25 18:18:08 +00:00
|
|
|
android:id="@+id/edtxtRemitteeBic"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_input_fields_height"
|
|
|
|
android:inputType="text"
|
|
|
|
android:enabled="false"
|
|
|
|
/>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2020-01-25 18:18:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/dialog_transfer_money_amount"
|
2019-10-20 21:52:07 +00:00
|
|
|
>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2020-01-25 18:18:08 +00:00
|
|
|
android:id="@+id/edtxtAmount"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_input_fields_height"
|
|
|
|
android:inputType="numberDecimal"
|
2019-10-20 21:52:07 +00:00
|
|
|
/>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2020-01-25 18:18:08 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/dialog_transfer_money_usage"
|
2019-10-20 21:52:07 +00:00
|
|
|
>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2020-01-25 18:18:08 +00:00
|
|
|
android:id="@+id/edtxtUsage"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_transfer_money_input_fields_height"
|
|
|
|
android:inputType="text"
|
2019-10-20 21:52:07 +00:00
|
|
|
/>
|
|
|
|
|
2020-04-22 15:40:12 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/lytButtonBar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-20 21:52:07 +00:00
|
|
|
>
|
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnTransferMoney"
|
|
|
|
android:layout_width="@dimen/dialog_transfer_money_buttons_width"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:text="@string/dialog_transfer_money_transfer"
|
|
|
|
android:enabled="false"
|
2019-10-20 21:52:07 +00:00
|
|
|
/>
|
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnCancel"
|
|
|
|
android:layout_width="@dimen/dialog_transfer_money_buttons_width"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toLeftOf="@+id/btnTransferMoney"
|
|
|
|
android:layout_toStartOf="@+id/btnTransferMoney"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:text="@string/cancel"
|
2019-10-20 21:52:07 +00:00
|
|
|
/>
|
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2019-10-20 21:52:07 +00:00
|
|
|
|
2020-01-25 18:18:08 +00:00
|
|
|
</ScrollView>
|