123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.appcompat.widget.LinearLayoutCompat 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="match_parent"
- android:layout_height="match_parent"
- android:background="@color/text_black"
- android:orientation="vertical"
- tools:context=".screen.register.RegisterActivity">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <androidx.cardview.widget.CardView
- android:id="@+id/backgroundCard"
- android:layout_width="match_parent"
- android:layout_height="200dp"
- app:cardBackgroundColor="@color/cardview_dark_background"
- app:cardElevation="0dp" />
- <ImageView
- android:id="@+id/profileImage"
- android:layout_width="100dp"
- android:layout_height="100dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="150dp"
- android:src="@drawable/ic_user_white" />
- </FrameLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:padding="15dp">
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/til_firstname"
- style="@style/BoxInputLayout"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- app:endIconMode="clear_text"
- app:hintEnabled="false">
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/et_firstname"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_white"
- android:hint="@string/hint_firstname"
- android:inputType="text"
- android:maxLength="50"
- android:padding="0dp" />
- </com.google.android.material.textfield.TextInputLayout>
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/til_lastname"
- style="@style/BoxInputLayout"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- app:endIconMode="clear_text"
- app:hintEnabled="false">
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/et_lastname"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_white"
- android:hint="@string/hint_lastname"
- android:inputType="text"
- android:maxLength="50"
- android:padding="0dp" />
- </com.google.android.material.textfield.TextInputLayout>
- <androidx.appcompat.widget.AppCompatSpinner
- android:id="@+id/et_gender"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/color_white"
- android:hint="@string/hint_lastname"
- android:inputType="text"
- android:maxLength="50"
- android:paddingTop="10dp"
- android:paddingBottom="10dp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/color_gray_300"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <RadioGroup
- android:id="@+id/radioGroup"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <RadioButton
- android:id="@+id/radioButtonEmail"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:checked="true"
- android:text="Email" />
- <RadioButton
- android:id="@+id/radioButtonPhone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Phone Number" />
- </RadioGroup>
- </LinearLayout>
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/til_email"
- style="@style/BoxInputLayout"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- app:endIconMode="clear_text"
- app:hintEnabled="false">
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/et_email"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_white"
- android:hint="@string/hint_email"
- android:inputType="text"
- android:maxLength="50"
- android:padding="0dp" />
- </com.google.android.material.textfield.TextInputLayout>
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/til_phone"
- style="@style/BoxInputLayout"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:visibility="gone"
- app:endIconMode="clear_text"
- app:hintEnabled="false">
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/et_phone"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_white"
- android:hint="@string/hint_phone"
- android:inputType="text"
- android:maxLength="50"
- android:padding="0dp" />
- </com.google.android.material.textfield.TextInputLayout>
- </LinearLayout>
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/til_password"
- style="@style/BoxInputLayout"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- app:endIconMode="clear_text"
- app:hintEnabled="false">
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/et_password"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_white"
- android:hint="@string/hint_password"
- android:inputType="text"
- android:maxLength="50"
- android:padding="0dp" />
- </com.google.android.material.textfield.TextInputLayout>
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/til_confirm_password"
- style="@style/BoxInputLayout"
- android:layout_width="match_parent"
- android:layout_height="48dp"
- app:endIconMode="clear_text"
- app:hintEnabled="false">
- <androidx.appcompat.widget.AppCompatEditText
- android:id="@+id/et_confirm_password"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_white"
- android:hint="@string/hint_confirm_password"
- android:inputType="text"
- android:maxLength="50"
- android:padding="0dp" />
- </com.google.android.material.textfield.TextInputLayout>
- <Button
- android:id="@+id/registerButton"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="32dp"
- android:layout_marginTop="32dp"
- android:layout_marginEnd="32dp"
- android:text="Register"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/confirmPasswordEditText" />
- </LinearLayout>
- </androidx.appcompat.widget.LinearLayoutCompat>
|