Skip to content

Instantly share code, notes, and snippets.

@anta40
Created September 21, 2022 13:25
Show Gist options
  • Save anta40/e452a07f1010d8148399b84183902478 to your computer and use it in GitHub Desktop.
Save anta40/e452a07f1010d8148399b84183902478 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:padding="8dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_marginTop="5dp"
android:id="@+id/edtName"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:layout_marginTop="5dp"
android:id="@+id/edtPopulation"
android:inputType="number"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:text="SAVE"
android:id="@+id/btnSave"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment