Androidアプリ開発初心者です。

タブの実装は出来たのですが、次にナビゲーションビューを設置しようとするとレイアウトが崩れたりと上手く併用が出来ません。
MainActivityに2つの要素を置くものではないのでしょうか。
頓珍漢な質問になっているかも知れませんが、良い方法をお教えください。
よろしくお願いします。

<LinearLayout 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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
tools:context=".MainActivity"
android:weightSum="1">

<include
    android:id="@+id/tool_bar"
    layout="@layout/tool_bar"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    />

<samples.exoguru.materialtabs.SlidingTabLayout
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:elevation="2dp"
    android:background="@color/ColorPrimary"/>

<android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_height="match_parent"
            android:layout_width="match_parent"></android.support.v4.view.ViewPager>