Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView
- 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"
- android:background="@drawable/background"
- android:fillViewport="true">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="16dp">
- <EditText
- android:id="@+id/fullNameEditText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Full Name"/>
- <EditText
- android:id="@+id/reservationDateEditText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:hint="Check-In Date"
- android:padding="15dp"
- android:focusable="false"
- android:clickable="true"
- android:focusableInTouchMode="false"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="200dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="Adults"
- android:gravity="center"
- android:layout_gravity="center"
- android:textSize="16sp"/>
- <NumberPicker
- android:id="@+id/customersNumberPicker"
- android:layout_width="200dp"
- android:layout_height="100dp"
- android:layout_weight="1"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:layout_gravity="center"
- android:descendantFocusability="blocksDescendants"
- android:gravity="center"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"/>
- </LinearLayout>
- <EditText
- android:id="@+id/contactNumberEditText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Contact Number"/>
- <EditText
- android:id="@+id/emailEditText"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Email"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Deposit on this Account"
- android:textSize="20sp"
- android:layout_gravity="center_horizontal" />
- <TextView
- android:id="@+id/gcashDepositNumberResto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Hotel Gcash Number"
- android:inputType="text"/>
- <TextView
- android:id="@+id/gcashDepositNameResto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Hotel Gcash Name"
- android:inputType="text"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Deposit Form"
- android:textSize="20sp"
- android:layout_gravity="center_horizontal" />
- <EditText
- android:id="@+id/yourGcashNameResto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="Your Gcash Name"
- android:inputType="text"
- android:padding="15dp" />
- <EditText
- android:id="@+id/yourGcashNumberResto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Your Gcash Number"
- android:inputType="text"/>
- <EditText
- android:id="@+id/referenceNumberResto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:hint="Reference Number"
- android:inputType="text"/>
- <!-- Screenshot of the Gcash Receipt -->
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Screenshot of Gcash Receipt"
- android:textSize="16sp" />
- <ImageView
- android:id="@+id/attachedImageViewResto"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="20dp"
- android:layout_marginBottom="20dp"
- android:scaleType="fitCenter"
- android:visibility="gone" />
- <Button
- android:id="@+id/attachPhotoButtonResto"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Attach Photo"/>
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Submit"
- android:id="@+id/submitButton"/>
- </LinearLayout>
- </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement