Sunteți pe pagina 1din 7

<?xml version="1.0" encoding="utf-8"?

>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

</android.support.v7.widget.Toolbar>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_main_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"
android:clipToPadding="false"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar">

</android.support.v7.widget.RecyclerView>

<View
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/menu_bg"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar" />

<LinearLayout
android:id="@+id/new_job"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_light"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/btn_drafts"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/find_job"
app:layout_constraintTop_toBottomOf="@+id/toolbar">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_add_job" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New InTake"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/find_job"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_dark"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/report"
app:layout_constraintLeft_toRightOf="@+id/new_job"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_find_job" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Finish InTake"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/btn_drafts"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_light"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/btn_warped_back"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/report"
app:layout_constraintTop_toBottomOf="@+id/new_job">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_drafts" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Drafts"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<TextView
android:id="@+id/tv_drafts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/_10sdp"
android:layout_marginTop="@dimen/_10sdp"
android:background="@drawable/tv_round"
android:elevation="@dimen/_2sdp"
android:paddingTop="@dimen/_6sdp"
android:text="1"
android:textAlignment="center"
android:textColor="@color/white"
android:textSize="@dimen/_10ssp"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="@+id/btn_drafts"
app:layout_constraintTop_toTopOf="@+id/btn_drafts" />

<LinearLayout
android:id="@+id/report"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_dark"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/btn_bill_of_sale"
app:layout_constraintLeft_toRightOf="@+id/btn_drafts"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/find_job">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_report" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Reports"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/btn_warped_back"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_light"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/btn_loaner_phone"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/btn_bill_of_sale"
app:layout_constraintTop_toBottomOf="@+id/btn_drafts">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_warped_back" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Warped Back"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/btn_bill_of_sale"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_dark"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@id/btn_cellbotictech"
app:layout_constraintLeft_toRightOf="@+id/btn_warped_back"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/report">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_bill" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Bill of Sale"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/btn_loaner_phone"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_light"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@+id/settings"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/btn_cellbotictech"
app:layout_constraintTop_toBottomOf="@+id/btn_warped_back">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_warped_back" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Loaner Phone Disclaimer"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/btn_cellbotictech"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_dark"
android:gravity="center"
android:visibility="gone"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@id/btn_repair_tips"
app:layout_constraintLeft_toRightOf="@+id/btn_loaner_phone"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_bill_of_sale">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_bill" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cellbotictech.com"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/settings"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_light"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/help"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/btn_repair_tips"
app:layout_constraintTop_toBottomOf="@+id/btn_loaner_phone">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_settings" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Settings"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/btn_repair_tips"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/btn_dark"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/help"
app:layout_constraintLeft_toRightOf="@+id/settings"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_cellbotictech">

<ImageView
android:layout_width="@dimen/_35sdp"
android:layout_height="@dimen/_35sdp"
android:layout_marginBottom="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_tips" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Repair Tips"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

<LinearLayout
android:id="@+id/help"
android:layout_width="0dp"
android:layout_height="@dimen/_45sdp"
android:background="@drawable/btn_dark"
android:gravity="center"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/settings">

<ImageView
android:layout_width="@dimen/_25sdp"
android:layout_height="@dimen/_25sdp"
android:layout_marginRight="@dimen/_5sdp"
android:alpha="0.7"
android:src="@drawable/ic_help" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Help"
android:textColor="@color/black"
android:textSize="@dimen/_13ssp" />
</LinearLayout>

</android.support.constraint.ConstraintLayout>

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_menu" />
</android.support.v4.widget.DrawerLayout>

S-ar putea să vă placă și