2017-10-22 18:17:09 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-01-25 21:49:43 +00:00
|
|
|
<ScrollView
|
2017-12-06 04:14:48 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-05 19:49:35 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-10-22 18:17:09 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-12-21 04:33:31 +00:00
|
|
|
android:layout_height="wrap_content">
|
2017-10-22 18:17:09 +00:00
|
|
|
|
2018-01-25 21:49:43 +00:00
|
|
|
<android.support.constraint.ConstraintLayout
|
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"
|
2018-01-25 21:49:43 +00:00
|
|
|
android:paddingBottom="24dp">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/topView"
|
|
|
|
android:layout_width="match_parent"
|
2018-09-05 19:49:35 +00:00
|
|
|
android:layout_height="119dp"
|
2018-01-25 21:49:43 +00:00
|
|
|
android:background="@drawable/send_transaction_top_view"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2018-09-05 19:49:35 +00:00
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
2018-01-25 21:49:43 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:text="@string/title_capital"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<cy.agorise.crystalwallet.util.CircularImageView
|
|
|
|
android:id="@+id/gravatar"
|
|
|
|
android:layout_width="60dp"
|
|
|
|
android:layout_height="60dp"
|
|
|
|
android:layout_marginStart="32dp"
|
|
|
|
android:layout_marginTop="90dp"
|
2018-06-22 17:44:23 +00:00
|
|
|
android:src="@drawable/avatar_placeholder"
|
2018-01-25 21:49:43 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2018-08-17 17:08:49 +00:00
|
|
|
<com.jaredrummler.materialspinner.MaterialSpinner
|
2018-01-25 21:49:43 +00:00
|
|
|
android:id="@+id/spFrom"
|
|
|
|
android:layout_width="0dp"
|
2018-09-13 02:34:27 +00:00
|
|
|
android:layout_height="40dp"
|
2018-01-25 21:49:43 +00:00
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:layout_marginStart="16dp"
|
2018-09-13 02:34:27 +00:00
|
|
|
android:textColor="@color/white"
|
2018-01-25 21:49:43 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/gravatar"
|
2018-09-13 02:34:27 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/topView"/>
|
2018-01-25 21:49:43 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvFromError"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/spFrom"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/spFrom"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/topView" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etTo"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="text"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:hint="@string/to_capital"
|
2018-08-14 21:15:45 +00:00
|
|
|
android:maxLength="255"
|
2018-01-25 21:49:43 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/gravatar" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ivPeople"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
app:srcCompat="@drawable/ic_people"
|
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/etTo"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/etTo"
|
|
|
|
android:contentDescription="@string/people_icon" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvToError"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/etTo"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/etTo"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/etTo" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etAmount"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:inputType="numberDecimal"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:hint="@string/amount"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvToError" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvAmountError"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/etAmount"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/etAmount"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/etAmount" />
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/spAsset"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:gravity="top"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@+id/etAmount" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/viewSpinner"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginBottom="7dp"
|
|
|
|
android:background="@color/darkGray"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/spAsset"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/spAsset"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/etAmount" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvAssetError"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/tvAmountError"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/spAsset"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/spAsset" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/etMemo"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:hint="@string/memo_capital"
|
|
|
|
android:textSize="20sp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvAmountError" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvMemoError"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/red"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/etMemo"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/etMemo"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/etMemo" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tvScan"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:text="@string/scan_capital"
|
|
|
|
android:textSize="14sp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvMemoError" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ivCamera"
|
|
|
|
android:layout_width="180dp"
|
|
|
|
android:layout_height="180dp"
|
|
|
|
android:layout_marginBottom="24dp"
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:src="#666"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvScan"
|
|
|
|
android:contentDescription="@string/camera_feed_to_scan_qr" />
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fabCloseCamera"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
app:fabSize="mini"
|
|
|
|
android:layout_marginBottom="165dp"
|
|
|
|
android:layout_marginStart="165dp"
|
|
|
|
app:backgroundTint="@color/send_strong_orange"
|
|
|
|
app:srcCompat="@drawable/ic_close"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/ivCamera"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/ivCamera" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/viewSend"
|
|
|
|
android:layout_width="120dp"
|
|
|
|
android:layout_height="140dp"
|
|
|
|
android:layout_marginEnd="0dp"
|
|
|
|
android:background="@drawable/send_transaction_send_view"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/ivCamera" />
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/btnSend"
|
|
|
|
android:layout_width="90dp"
|
|
|
|
android:layout_height="90dp"
|
|
|
|
app:backgroundTint="@color/send_strong_orange"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2018-09-13 02:34:27 +00:00
|
|
|
app:srcCompat="@drawable/ic_arrow_forward"
|
|
|
|
tools:layout_editor_absoluteY="471dp" />
|
2018-01-25 21:49:43 +00:00
|
|
|
|
2018-09-05 19:49:35 +00:00
|
|
|
<LinearLayout
|
2018-01-25 21:49:43 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-05 19:49:35 +00:00
|
|
|
android:layout_marginBottom="600dp"
|
2018-01-25 21:49:43 +00:00
|
|
|
android:layout_marginEnd="24dp"
|
2018-09-05 19:49:35 +00:00
|
|
|
android:layout_marginTop="20dp"
|
2018-01-25 21:49:43 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-09-05 19:49:35 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/btnCancel"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="26dp"
|
|
|
|
android:background="@drawable/ic_close"
|
|
|
|
android:text=""
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-01-25 21:49:43 +00:00
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|