58 lines
No EOL
2 KiB
XML
58 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/loCard"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:maxHeight="200dp"
|
|
android:padding="3dp"
|
|
app:layout_constraintHeight_max="200dp"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:ignore="contentDescription"
|
|
tools:showIn="@layout/fr_loaded_wallet">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivTangemCard"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:src="@drawable/card_default" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rlProgressBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:elevation="3dp"
|
|
android:padding="5dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:alpha="0.75"
|
|
android:background="@color/white" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:alpha="1"
|
|
android:fontFamily="@font/maaxmedium"
|
|
android:text="@string/loaded_wallet_status_verifying"
|
|
android:textColor="@color/colorPrimary"
|
|
android:textSize="12dp"
|
|
android:textStyle="bold" />
|
|
|
|
<ProgressBar
|
|
android:layout_width="@dimen/size_progress_bar_big"
|
|
android:layout_height="@dimen/size_progress_bar_big"
|
|
android:layout_centerInParent="true"
|
|
android:alpha="1"
|
|
android:elevation="1dp"
|
|
android:progressTint="@color/colorPrimary" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout> |