mirror of
https://github.com/hmalik144/Driver.git
synced 2025-12-10 02:45:20 +00:00
86 lines
3.2 KiB
XML
86 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".PrivateHireLicenseFragment">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp"
|
|
android:layout_centerInParent="true">
|
|
<TextView
|
|
android:id="@+id/uploadmot"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/lin_lay"
|
|
android:layout_alignParentLeft="true"
|
|
android:background="@drawable/round_edit_text"
|
|
android:ems="10"
|
|
android:gravity="center"
|
|
android:padding="12dp"
|
|
android:layout_marginBottom="12dp"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:text="Upload M.O.T"
|
|
android:textColorHighlight="#608d91" />
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
android:id="@+id/mot_no"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
android:ems="10"
|
|
android:hint="MOT Number"
|
|
android:inputType="none"
|
|
android:maxLines="1"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:textColorHighlight="#608d91" />
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
android:id="@+id/mot_expiry"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
android:ems="10"
|
|
android:hint="MOT Expiry"
|
|
android:inputType="date"
|
|
android:maxLines="1"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:textColorHighlight="#608d91" />
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
<Button
|
|
android:id="@+id/submit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_margin="12dp"
|
|
android:background="@drawable/cardviewoutline"
|
|
android:text="@string/submit"
|
|
android:textColor="@android:color/black"
|
|
android:textStyle="bold"
|
|
style="?android:attr/borderlessButtonStyle" />
|
|
|
|
|
|
</RelativeLayout> |