<?xml version="1.0" encoding="utf-8"?>

<LinearLayout android:id="@+id/MyLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:inputType="textMultiLine"
        android:gravity="top"/>

    <Button
        android:id="@+id/createNotes"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Save Notes"
        android:onClick="SaveNotes"
        />

    <Button
        android:id="@+id/showNotes"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Show Notes"
        android:onClick="ShowNotes"
        />

</LinearLayout>