Subversion Repositories SmartDukaan

Rev

Rev 14792 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!--
<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"
    tools:context="com.saholic.profittill.main.MobileNumber">

    <RelativeLayout
        android:background="@color/green_tobe_used"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:src="@drawable/pmlogo"
            android:layout_centerHorizontal="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    <TextView
        android:text="Verify Your Number"
        android:layout_width="wrap_content"
        android:gravity="center"
        android:textSize="20dp"
        android:textStyle="bold"
        android:layout_centerInParent="true"
        android:textColor="@color/Black"
        android:id="@+id/phoneNumberFirstTimeText"
        android:layout_height="wrap_content" />
        <EditText
            android:layout_marginTop="10dp"
            android:hint="Mobile Number"
            android:gravity="center"
            android:background="@color/White"
            android:editable="false"
            android:inputType="phone"
            android:maxLength="10"
            android:layout_centerHorizontal="true"
            android:layout_below="@id/phoneNumberFirstTimeText"
            android:id="@+id/phoneNumberFirstTime"
            android:layout_width="200dp"
            android:layout_height="40dp" />


        <Button
            android:background="@color/White"
            android:layout_width="wrap_content"
            android:text="Next >"
            android:id="@+id/phoneNumberFirstTimeButton"
            android:layout_height="40dp"
            android:layout_below="@+id/phoneNumberFirstTime"
            android:layout_centerInParent="true"
            android:layout_marginTop="10dp" />

        <EditText
            android:textSize="20dp"
            android:layout_width="wrap_content"
            android:text="Skip this Step >"
            android:id="@+id/skipMobileNumber"
            android:layout_height="40dp"
            android:editable="false"
            android:layout_below="@+id/phoneNumberFirstTimeButton"
            android:layout_alignParentRight="true"
            android:layout_marginRight="30dp"
            android:layout_marginTop="30dp" />

        </RelativeLayout>

</RelativeLayout>
-->
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="com.saholic.profittill.main.MobileNumber"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:id="@+id/mobileNumbersc1"
        android:background="@color/green_tobe_used">

        <ImageView
            android:src="@drawable/pmlogonew"
            android:id="@+id/mobileNumberLogo"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </ScrollView>
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/mobileNumbersc2"
        android:layout_below="@+id/mobileNumbersc1"
        android:background="@color/White">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <EditText
                android:hint="Enter your Mobile Number"
                android:layout_width="250dp"
                android:gravity="center"
                android:textColorHint="@color/green_tobe_used"
                android:layout_marginTop="10dp"
                android:inputType="phone"
                android:id="@+id/phoneNumberFirstTime"
                android:background="@drawable/mobilenumber"
                android:layout_centerHorizontal="true"
                android:layout_height="wrap_content"
                android:maxLength="10"
                />
            <TextView
                android:layout_below="@+id/phoneNumberFirstTime"
                android:layout_marginTop="7dp"
                android:textSize="15dp"
                android:text="Enter a phone number you use to get the latest updates on your earned cashbacks as soon as you get them."
                android:layout_centerHorizontal="true"
                android:layout_width="250dp"
                android:id="@+id/mobilenumberText"
                android:layout_height="match_parent" />

            <Button
                android:text="Next >"
                android:layout_below="@+id/mobilenumberText"
                android:layout_marginTop="30dp"
                android:background="@color/green_tobe_used"
                android:textColor="@color/White"
                android:layout_centerHorizontal="true"
                android:id="@+id/phoneNumberFirstTimeButton"
                android:layout_width="wrap_content"
                android:layout_height="40dp" />

            <TextView
                android:text="Skip >"
                android:background="@color/White"
                android:textColor="@color/green_tobe_used"
                android:layout_below="@+id/phoneNumberFirstTimeButton"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:id="@+id/skipMobileNumber"
                android:layout_marginTop="30dp"
                android:layout_alignParentBottom="true"
                android:layout_alignRight="@+id/mobilenumberText"
                android:layout_alignEnd="@+id/mobilenumberText" />

        </RelativeLayout>
    </ScrollView>
</RelativeLayout>