Skip to content

Instantly share code, notes, and snippets.

@pkavoo
Created December 20, 2018 07:40
Show Gist options
  • Save pkavoo/11ee2b650a11e6fb025ff4353787ef13 to your computer and use it in GitHub Desktop.
Save pkavoo/11ee2b650a11e6fb025ff4353787ef13 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipper"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.design.widget.CoordinatorLayout 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:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:background="@color/colorPrimary"
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<TextView
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:fontFamily="@font/opensans_bold"
android:gravity="center_horizontal|center_vertical"
android:text="Company Details"
android:textColor="#ffffff"
android:textSize="22sp"
android:textStyle="bold" />
</android.support.v7.widget.Toolbar>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="@dimen/_5sdp">
<EditText
android:textColor="@color/textColor"
android:textColorHint="@color/textColor"
android:id="@+id/company_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_5sdp"
android:background="@drawable/sell"
android:fontFamily="@font/opensans_regular"
android:hint="Company Name"
android:inputType="textCapSentences"
android:padding="@dimen/_10sdp"
android:textSize="20sp" />
<EditText
android:textColor="@color/textColor"
android:textColorHint="@color/textColor"
android:id="@+id/registration_certificate_no"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_5sdp"
android:background="@drawable/sell"
android:fontFamily="@font/opensans_regular"
android:hint="Registration Certificate Number"
android:inputType="textCapSentences"
android:padding="@dimen/_10sdp"
android:textSize="20sp" />
<EditText
android:id="@+id/telephone_no"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_5sdp"
android:background="@drawable/sell"
android:fontFamily="@font/opensans_regular"
android:hint="Telephone Number"
android:inputType="textCapCharacters"
android:padding="@dimen/_10sdp"
android:textColor="@color/textColor"
android:textColorHint="@color/textColor"
android:textSize="20sp" />
<EditText
android:id="@+id/email_address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_5sdp"
android:background="@drawable/sell"
android:fontFamily="@font/opensans_regular"
android:hint="Email Address"
android:inputType="textCapSentences"
android:padding="@dimen/_10sdp"
android:textColor="@color/textColor"
android:textColorHint="@color/textColor"
android:textSize="20sp" />
<Button
android:id="@+id/next_company_contact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/_10sdp"
android:background="@drawable/proceed_button"
android:fontFamily="@font/opensans_bold"
android:text="Next"
android:textAllCaps="false"
android:textColor="#ffffff"
android:textSize="20sp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
</ScrollView>
<include layout="@layout/company_contact"/>
<include layout="@layout/upload_company_copies"/>
</ViewFlipper>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment