crystal-wallet-android/app/src/main/res/layout/progress_creating_account.xml

30 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="@dimen/activity_vertical_margin">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/ivProgressCreatingAccount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/loader_homescreen" />
<TextView
android:id="@+id/tvProgressCreatingAccount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@+id/ivProgressCreatingAccount"
android:text="Creating New Account..." />
</RelativeLayout>
</LinearLayout>