Last active
February 25, 2020 11:14
-
-
Save surajme/e505efd3c3f9c0877f3ae4da2ae63bb8 to your computer and use it in GitHub Desktop.
This file contains 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
<EditText | |
android:id="@+id/nameEt" | |
android:hint="Enter Name" | |
android:inputType="text" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
/> | |
<EditText | |
android:id="@+id/phoneEt" | |
android:hint="Enter Phone No." | |
android:inputType="number" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
/> | |
<Button | |
android:id="@+id/saveBtn" | |
android:text="Save" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment