Skip to content

Instantly share code, notes, and snippets.

@surajme
Last active February 25, 2020 11:14
Show Gist options
  • Save surajme/e505efd3c3f9c0877f3ae4da2ae63bb8 to your computer and use it in GitHub Desktop.
Save surajme/e505efd3c3f9c0877f3ae4da2ae63bb8 to your computer and use it in GitHub Desktop.
<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