Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Created October 13, 2018 02:00
Show Gist options
  • Save markchristopherng/1ec00aa7dec5a48dd9e3b05338e04329 to your computer and use it in GitHub Desktop.
Save markchristopherng/1ec00aa7dec5a48dd9e3b05338e04329 to your computer and use it in GitHub Desktop.
<android.support.design.widget.TextInputLayout
android:id="@+id/textEmailLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/email_address"
android:labelFor="@+id/textEmail">
<EditText android:id="@+id/textEmail"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cursorVisible="true"
android:inputType="textEmailAddress"
android:nextFocusDown="@+id/textPassword"
android:nextFocusRight="@+id/textPassword"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment