Created
November 28, 2017 09:56
-
-
Save ziginsider/57f915b601d3d5ea7b6860d7a584a7b8 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/input_name" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:layout_below="@+id/toolbar"> | |
| <EditText | |
| android:id="@+id/name" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:hint="Enter username" | |
| android:maxLines="1" /> | |
| </android.support.design.widget.TextInputLayout> | |
| <android.support.design.widget.TextInputLayout | |
| android:id="@+id/input_email" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:layout_below="@+id/input_name"> | |
| <EditText | |
| android:id="@+id/email" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:hint="Enter email" | |
| 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