Commit 08ca2325 authored by james.clarke2's avatar james.clarke2

Add new file

parent 1c5edf12
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Feedback">
<EditText
android:id="@+id/edit1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Name"
android:textSize="20dp"
android:textColor="@android:color/black"
/>
<EditText
android:id="@+id/edit2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Feedback"
android:layout_below="@id/edit1"
android:textSize="20dp"
android:textColor="@android:color/black"
/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Send Feedback"
android:layout_centerInParent="true"
android:id="@+id/ButtonFeedback"
/>
</RelativeLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment