Skip to content

Instantly share code, notes, and snippets.

@bariskarapinar
Created October 7, 2019 18:24
Show Gist options
  • Save bariskarapinar/d64ba5adea816d4c59c0e9d42afcc6cb to your computer and use it in GitHub Desktop.
Save bariskarapinar/d64ba5adea816d4c59c0e9d42afcc6cb to your computer and use it in GitHub Desktop.
<ScrollView 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="wrap_content"
android:stretchColumns="1">
<TextView
android:id="@+id/sign_up_TextView"
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/sign_up"
android:clickable="true"
android:gravity="center"
android:textColor="@color/colorPrimaryDark"
style="?android:attr/listSeparatorTextViewStyle"/>
<EditText
android:id="@+id/SignUpMail"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="@string/mail_address"
android:inputType="textEmailAddress"/>
<EditText
android:id="@+id/SignUpPass"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="@string/password"
android:inputType="textPassword"/>
<Button
android:id="@+id/SignUpButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/ok"
android:background="@drawable/custom_button"
android:textColor="@color/colorPrimaryDark"/>
<TextView
android:id="@+id/AlreadyMember"
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/already_a_member"
android:onClick="navigate_sign_in"
android:clickable="true"
android:gravity="center"
android:textColor="@color/colorPrimaryDark"/>
</TableLayout>
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment