Button send transaction get better animation
This commit is contained in:
parent
b7235db5f2
commit
da290acddc
4 changed files with 313 additions and 239 deletions
|
@ -24,15 +24,18 @@ import android.util.Log;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
import android.view.ViewTreeObserver;
|
||||||
import android.view.Window;
|
import android.view.Window;
|
||||||
import android.widget.Button;
|
import android.widget.Button;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
|
import android.widget.ScrollView;
|
||||||
import android.widget.Spinner;
|
import android.widget.Spinner;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import com.google.zxing.Result;
|
import com.google.zxing.Result;
|
||||||
import com.jaredrummler.materialspinner.MaterialSpinner;
|
import com.jaredrummler.materialspinner.MaterialSpinner;
|
||||||
|
import com.vincent.filepicker.ToastUtil;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.math.RoundingMode;
|
import java.math.RoundingMode;
|
||||||
|
@ -79,12 +82,16 @@ public class SendTransactionFragment extends DialogFragment implements UIValidat
|
||||||
TextView tvFromError;
|
TextView tvFromError;
|
||||||
@BindView(R.id.etTo)
|
@BindView(R.id.etTo)
|
||||||
EditText etTo;
|
EditText etTo;
|
||||||
|
@BindView(R.id.viewSend)
|
||||||
|
View viewSend;
|
||||||
@BindView(R.id.tvToError)
|
@BindView(R.id.tvToError)
|
||||||
TextView tvToError;
|
TextView tvToError;
|
||||||
@BindView(R.id.spAsset)
|
@BindView(R.id.spAsset)
|
||||||
Spinner spAsset;
|
Spinner spAsset;
|
||||||
@BindView(R.id.tvAssetError)
|
@BindView(R.id.tvAssetError)
|
||||||
TextView tvAssetError;
|
TextView tvAssetError;
|
||||||
|
@BindView(R.id.scrollMain)
|
||||||
|
ScrollView scrollMain;
|
||||||
@BindView(R.id.etAmount)
|
@BindView(R.id.etAmount)
|
||||||
EditText etAmount;
|
EditText etAmount;
|
||||||
@BindView(R.id.tvAmountError)
|
@BindView(R.id.tvAmountError)
|
||||||
|
@ -136,13 +143,58 @@ public class SendTransactionFragment extends DialogFragment implements UIValidat
|
||||||
fabSend.hide();
|
fabSend.hide();
|
||||||
|
|
||||||
//AlertDialog.Builder
|
//AlertDialog.Builder
|
||||||
builder = new AlertDialog.Builder(getActivity(), R.style.SendTransactionTheme);
|
builder = new AlertDialog.Builder(getActivity(), R.style.dialog_theme_full);
|
||||||
//builder.setTitle("Send");
|
//builder.setTitle("Send");
|
||||||
|
|
||||||
LayoutInflater inflater = getActivity().getLayoutInflater();
|
LayoutInflater inflater = getActivity().getLayoutInflater();
|
||||||
View view = inflater.inflate(R.layout.send_transaction, null);
|
View view = inflater.inflate(R.layout.send_transaction, null);
|
||||||
ButterKnife.bind(this, view);
|
ButterKnife.bind(this, view);
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Detet scroll changes
|
||||||
|
* */
|
||||||
|
scrollMain.getViewTreeObserver().addOnScrollChangedListener(new ViewTreeObserver.OnScrollChangedListener() {
|
||||||
|
@Override
|
||||||
|
public void onScrollChanged() {
|
||||||
|
|
||||||
|
View view = scrollMain.getChildAt(scrollMain.getChildCount() - 1);
|
||||||
|
|
||||||
|
int diff = (view.getBottom() - (scrollMain.getHeight() + scrollMain.getScrollY()));
|
||||||
|
|
||||||
|
float traslationY = btnSend.getTranslationY();
|
||||||
|
|
||||||
|
if(diff<=266 && diff>128){
|
||||||
|
//btnSend.setTranslationY(0);
|
||||||
|
//viewSend.setTranslationY(0);
|
||||||
|
|
||||||
|
btnSend.animate().y(880);
|
||||||
|
viewSend.animate().y(800);
|
||||||
|
}
|
||||||
|
else if(diff<=128 && diff>10){
|
||||||
|
//btnSend.setTranslationY(-130);
|
||||||
|
//viewSend.setTranslationY(-130);
|
||||||
|
|
||||||
|
btnSend.animate().y(880);
|
||||||
|
viewSend.animate().y(800);
|
||||||
|
}
|
||||||
|
else if(diff<=10 && diff>0){
|
||||||
|
//btnSend.setTranslationY(-170);
|
||||||
|
//viewSend.setTranslationY(-170);
|
||||||
|
|
||||||
|
btnSend.animate().y(680);
|
||||||
|
viewSend.animate().y(600);
|
||||||
|
}
|
||||||
|
else if(diff==0){
|
||||||
|
//btnSend.setTranslationY(-190);
|
||||||
|
//viewSend.setTranslationY(-190);
|
||||||
|
|
||||||
|
btnSend.animate().y(680);
|
||||||
|
viewSend.animate().y(600);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
this.cryptoNetAccountId = getArguments().getLong("CRYPTO_NET_ACCOUNT_ID",-1);
|
this.cryptoNetAccountId = getArguments().getLong("CRYPTO_NET_ACCOUNT_ID",-1);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -31,7 +31,7 @@ public class BitsharesAccountMnemonicValidationField extends ValidationField {
|
||||||
this.startValidating();
|
this.startValidating();
|
||||||
final ValidationField field = this;
|
final ValidationField field = this;
|
||||||
|
|
||||||
final ValidateImportBitsharesAccountRequest request = new ValidateImportBitsharesAccountRequest(newAccountNameValue,newMnemonicValue);
|
final ValidateImportBitsharesAccountRequest request = new ValidateImportBitsharesAccountRequest(newAccountNameValue,newMnemonicValue,accountNameField.getContext());
|
||||||
request.setListener(new CryptoNetInfoRequestListener() {
|
request.setListener(new CryptoNetInfoRequestListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onCarryOut() {
|
public void onCarryOut() {
|
||||||
|
|
|
@ -1,254 +1,271 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<ScrollView
|
<RelativeLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="match_parent"
|
||||||
|
android:theme="@style/ActivityDialog">
|
||||||
|
|
||||||
<android.support.constraint.ConstraintLayout
|
|
||||||
|
|
||||||
|
<ScrollView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:paddingBottom="24dp">
|
android:layout_margin="20dp"
|
||||||
|
android:background="@color/white"
|
||||||
|
android:id="@+id/scrollMain">
|
||||||
|
|
||||||
<View
|
<android.support.constraint.ConstraintLayout
|
||||||
android:id="@+id/topView"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="119dp"
|
|
||||||
android:background="@drawable/send_transaction_top_view"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintHorizontal_bias="0.0"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="24dp"
|
android:paddingBottom="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
|
<View
|
||||||
android:id="@+id/gravatar"
|
android:id="@+id/topView"
|
||||||
android:layout_width="60dp"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="60dp"
|
android:layout_height="119dp"
|
||||||
android:layout_marginStart="32dp"
|
android:background="@drawable/send_transaction_top_view"
|
||||||
android:layout_marginTop="90dp"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
android:src="@drawable/avatar_placeholder"
|
app:layout_constraintHorizontal_bias="0.0"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
<com.jaredrummler.materialspinner.MaterialSpinner
|
|
||||||
android:id="@+id/spFrom"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="40dp"
|
|
||||||
android:layout_marginEnd="24dp"
|
|
||||||
android:layout_marginStart="16dp"
|
|
||||||
android:textColor="@color/white"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintStart_toEndOf="@id/gravatar"
|
|
||||||
app:layout_constraintBottom_toBottomOf="@+id/topView"/>
|
|
||||||
|
|
||||||
<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"
|
|
||||||
android:maxLength="255"
|
|
||||||
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"
|
|
||||||
app:srcCompat="@drawable/ic_arrow_forward"
|
|
||||||
tools:layout_editor_absoluteY="471dp" />
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginBottom="600dp"
|
|
||||||
android:layout_marginEnd="24dp"
|
|
||||||
android:layout_marginTop="20dp"
|
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
android:padding="5dp">
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/btnCancel"
|
android:layout_width="wrap_content"
|
||||||
android:layout_width="20dp"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="26dp"
|
android:layout_marginStart="24dp"
|
||||||
android:background="@drawable/ic_close"
|
android:layout_marginTop="24dp"
|
||||||
android:text=""
|
android:text="@string/title_capital"
|
||||||
android:textSize="18sp"
|
android:textColor="@color/white"
|
||||||
android:textStyle="bold" />
|
android:textSize="20sp"
|
||||||
|
android:textStyle="bold"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
</LinearLayout>
|
<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"
|
||||||
|
android:src="@drawable/avatar_placeholder"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<com.jaredrummler.materialspinner.MaterialSpinner
|
||||||
|
android:id="@+id/spFrom"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="40dp"
|
||||||
|
android:layout_marginEnd="24dp"
|
||||||
|
android:layout_marginStart="16dp"
|
||||||
|
android:textColor="@color/white"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toEndOf="@id/gravatar"
|
||||||
|
app:layout_constraintBottom_toBottomOf="@+id/topView"/>
|
||||||
|
|
||||||
|
<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"
|
||||||
|
android:maxLength="255"
|
||||||
|
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" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="600dp"
|
||||||
|
android:layout_marginEnd="24dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
|
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>
|
||||||
|
|
||||||
|
|
||||||
</android.support.constraint.ConstraintLayout>
|
</android.support.constraint.ConstraintLayout>
|
||||||
|
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:id="@+id/viewSend"
|
||||||
|
android:layout_width="120dp"
|
||||||
|
android:layout_height="140dp"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_alignParentTop="true"
|
||||||
|
android:layout_marginTop="400dp"
|
||||||
|
android:background="@drawable/send_transaction_send_view" />
|
||||||
|
|
||||||
|
<android.support.design.widget.FloatingActionButton
|
||||||
|
android:id="@+id/btnSend"
|
||||||
|
android:layout_width="90dp"
|
||||||
|
android:scaleX="1.7"
|
||||||
|
android:scaleY="1.7"
|
||||||
|
app:fabSize="normal"
|
||||||
|
android:layout_height="90dp"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_alignParentTop="true"
|
||||||
|
android:layout_marginRight="30dp"
|
||||||
|
android:layout_marginTop="441dp"
|
||||||
|
android:scaleType="center"
|
||||||
|
app:backgroundTint="@color/send_strong_orange"
|
||||||
|
app:srcCompat="@drawable/ic_arrow_forward"/>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
|
@ -11,6 +11,11 @@
|
||||||
<item name="android:windowContentTransitions">true</item>
|
<item name="android:windowContentTransitions">true</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<style name="dialog_theme_full" parent="android:Theme" >
|
||||||
|
<item name="android:windowNoTitle">true</item>
|
||||||
|
<item name="android:windowIsFloating">false</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="ActivityDialog" parent="Theme.AppCompat.Light.NoActionBar">
|
<style name="ActivityDialog" parent="Theme.AppCompat.Light.NoActionBar">
|
||||||
<item name="android:windowIsTranslucent">true</item>
|
<item name="android:windowIsTranslucent">true</item>
|
||||||
<item name="android:windowBackground">@android:color/transparent</item>
|
<item name="android:windowBackground">@android:color/transparent</item>
|
||||||
|
|
Loading…
Reference in a new issue