Created
October 13, 2018 02:00
-
-
Save markchristopherng/1ec00aa7dec5a48dd9e3b05338e04329 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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