Skip to content

Instantly share code, notes, and snippets.

@bariskarapinar
Created October 7, 2019 18:36
Show Gist options
  • Save bariskarapinar/aa1214ccf1823ee1dd64ddf574ddd808 to your computer and use it in GitHub Desktop.
Save bariskarapinar/aa1214ccf1823ee1dd64ddf574ddd808 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<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">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:stretchColumns="1">
<TextView
android:id="@+id/text"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
android:text="@string/reset_my_password"
android:clickable="true"
android:gravity="center"
android:textColor="@color/colorPrimaryDark"
style="?android:attr/listSeparatorTextViewStyle" />
<EditText
android:id="@+id/EditTextSurname"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginTop="20dp"
android:hint="@string/mail_address"
android:inputType="textEmailAddress"/>
<Button
android:id="@+id/btn_reset_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/ok"
android:layout_marginTop="10dp"
android:background="@drawable/custom_button"
android:textColor="@color/colorPrimaryDark"/>
<TextView
android:id="@+id/btn_sign_up"
android:textSize="15sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
android:text="@string/sign_up"
android:onClick="NavigateSignUp"
android:clickable="true"
android:gravity="center"
android:textColor="@color/colorPrimaryDark"/>
</TableLayout>
</android.support.constraint.ConstraintLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment