Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<?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:background="@color/green_tobe_used"
    tools:context="com.saholic.profittill.main.BasicInformation">


    <LinearLayout android:layout_width="match_parent"
        android:background="@color/green_tobe_used"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:gravity="center"
        android:padding="10dp"
        android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:background="@color/green_tobe_used"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_height="fill_parent">


        <RelativeLayout android:layout_width="match_parent"
            android:layout_height="550dp"
            android:background="@drawable/roundshape"
            android:padding="10dp"
            android:gravity="center"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Retailer Information"
                android:id="@+id/info"
                android:textColor="@color/grey_black"
                android:textStyle="bold"
                android:gravity="center"
                android:textSize="20dp"/>


            <android.support.design.widget.TextInputLayout
                android:id="@+id/cityinput"
                android:layout_width="match_parent"
                android:layout_below="@id/info"
                android:layout_marginTop="5dp"
                android:layout_height="wrap_content">
                <EditText android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/city"
                    android:gravity="left"
                    android:ems="10"
                    android:textSize="13dp"
                    android:maxLines="1"
                    android:inputType="text"
                    android:hint="City" />
            </android.support.design.widget.TextInputLayout>

            <android.support.design.widget.TextInputLayout
                android:id="@+id/Pincodeinput"
                android:layout_width="match_parent"
                android:layout_below="@+id/cityinput"
                android:layout_height="wrap_content">

                <EditText android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/Pincode"
                    android:gravity="left"
                    android:maxLines="1"
                    android:textSize="13dp"
                    android:ems="10"
                    android:inputType="number"
                    android:hint="Pincode"
                    android:maxLength="6" />

            </android.support.design.widget.TextInputLayout>


            <android.support.design.widget.TextInputLayout
                android:id="@+id/Phonenumberinput"
                android:layout_width="match_parent"
                android:layout_below="@+id/Pincodeinput"
                android:layout_height="wrap_content">

                <EditText android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/PhoneNumber"
                    android:gravity="left"
                    android:textSize="13dp"
                    android:maxLines="1"
                    android:ems="10"
                    android:inputType="number"
                    android:hint="Mobile "
                    android:maxLength="10" />

            </android.support.design.widget.TextInputLayout>

            <Button
                android:layout_width="200dp"
                android:id="@+id/infosend"
                android:text="Next"
                android:textColor="@color/White"
                android:background="@drawable/round"
                android:layout_height="35dp"
                android:layout_marginTop="59dp"
                android:layout_below="@+id/Phonenumberinput"
                android:layout_centerHorizontal="true" />

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="60dp"
                android:layout_below="@id/infosend">



            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text=" "/>

            </RelativeLayout>

        </RelativeLayout>
    </ScrollView>

    </LinearLayout>


</RelativeLayout>