Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <android.support.constraint.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"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- tools:context="com.icici.iciciappathon.login.AuthenticationActivity">
- <android.support.design.widget.TextInputLayout
- android:id="@+id/client_id_input_layout"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- app:layout_constraintBottom_toTopOf="@+id/guideline"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent">
- <android.support.design.widget.TextInputEditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/login_client_id"
- android:inputType="textEmailAddress" />
- </android.support.design.widget.TextInputLayout>
- <android.support.design.widget.TextInputLayout
- android:id="@+id/access_code_input_layout"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toBottomOf="@id/guideline">
- <android.support.design.widget.TextInputEditText
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/login_participation_access_code"
- android:inputType="textPassword" />
- </android.support.design.widget.TextInputLayout>
- <android.support.v7.widget.AppCompatButton
- android:id="@+id/authenticate"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:text="@string/login_auth"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/access_code_input_layout"
- app:layout_goneMarginTop="16dp" />
- <android.support.constraint.Guideline
- android:id="@+id/guideline"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- app:layout_constraintGuide_percent=".5" />
- </android.support.constraint.ConstraintLayout>
Add Comment
Please, Sign In to add comment