|
|
@@ -0,0 +1,122 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/creatorlabel"
|
|
|
+ android:layout_width="80dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName"
|
|
|
+ android:text="Creator:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/datelabel"
|
|
|
+ android:layout_width="66dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName"
|
|
|
+ android:text="Date:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/timelabel"
|
|
|
+ android:layout_width="68dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName"
|
|
|
+ android:text="Time:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/placelabel"
|
|
|
+ android:layout_width="70dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName"
|
|
|
+ android:text="Place:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/foodlabel"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName"
|
|
|
+ android:text="Food Served:" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/desclabel"
|
|
|
+ android:layout_width="105dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName"
|
|
|
+ android:text="Description:" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/nameText"
|
|
|
+ android:layout_width="255dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_column="1"
|
|
|
+ android:layout_row="0"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/timetext"
|
|
|
+ android:layout_width="255dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_column="1"
|
|
|
+ android:layout_row="2"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/datetext"
|
|
|
+ android:layout_width="255dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_column="1"
|
|
|
+ android:layout_row="1"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/placetext"
|
|
|
+ android:layout_width="255dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_column="1"
|
|
|
+ android:layout_row="3"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/foodText"
|
|
|
+ android:layout_width="255dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_column="1"
|
|
|
+ android:layout_row="4"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/descText"
|
|
|
+ android:layout_width="255dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_column="1"
|
|
|
+ android:layout_row="5"
|
|
|
+ android:ems="10"
|
|
|
+ android:inputType="textPersonName" />
|
|
|
+
|
|
|
+
|
|
|
+ <!--
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textViewsss"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:hint="Your viewsss"/>
|
|
|
+ -->
|
|
|
+
|
|
|
+
|
|
|
+ />
|
|
|
+</GridLayout>
|