Skip to content

Instantly share code, notes, and snippets.

@mishra3452
Created October 14, 2019 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mishra3452/69a0503f45359f8e7a500bbb9e4f3283 to your computer and use it in GitHub Desktop.
Save mishra3452/69a0503f45359f8e7a500bbb9e4f3283 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
tools:context=".LoginActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginLeft="32dp"
android:layout_marginRight="32dp"
android:orientation="vertical">
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="56dp">
<EditText
android:id="@+id/email_edt_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/email_hint"/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="56dp">
<EditText
android:id="@+id/pass_edt_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/password_hint"/>
</com.google.android.material.textfield.TextInputLayout>
<Button
android:id="@+id/login_btn"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_marginTop="32dp"
android:text="@string/login_btn"/>
<TextView
android:id="@+id/reset_pass_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Forgot password?"
android:layout_gravity="center"
android:clickable="true"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginTop="16dp">
<TextView
android:id="@+id/tvText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text="OR"
android:textColor="#000000"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_centerVertical="true"
android:layout_marginLeft="16dp"
android:layout_toLeftOf="@id/tvText"
android:background="#000000" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_centerVertical="true"
android:layout_marginRight="16dp"
android:layout_toRightOf="@id/tvText"
android:background="#000000" />
</RelativeLayout>
<Button
android:id="@+id/signup_btn"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_marginTop="16dp"
android:text="@string/signup_btn" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment