سلام
من در لیوت اصلی (main.xml) تگ اول رو DrawerLayout گذاشتم و داخل اون تگ fragment (که در تگ فرگمنت ،فایل ایکس ام ال فرگمنت رو به اون اتصال دادم)

بعد در فایل xml خود فرگمنت، یک لینیرلیوت قرار دادم با بکگراند مورد نظر (که به عنوان هدر نویگیشن باشه)
و یک menu هم ساختم (به عنوان لیست نویگیشن)
حالا چطوری می تونم منو رو داخل فرگمنت نمایش بدم؟


این کدها رو توی فایل فرگمنت مینویسم ولی درست نمیشه و فقط هدر رو نشون میده:
android:name="com.n.navigation.menu"
app:menu="@menu/@menu"
tools:menu="@menu/menu

راهنمایی کنید ممنون میشم
main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/draw_layout">

<RelativeLayout
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.narsis.navigation.MainActivity">

<include layout="@layout/toolbar"
android:id="@+id/toolbar"/>

</RelativeLayout>

<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/navigation_fragment"
android:layout_gravity="start"
android:background="@color/colorAccent"
android:name="com.narsis.navigation.Fragemnt_navigation"
app:layout="@layout/fragment_fragemnt_navigation"
tools:layout="@layout/fragment_fragemnt_navigation">
</fragment>

</android.support.v4.widget.DrawerLayout>


__________________________________________________ __________________________________________________ _____________________________________________
:فایل فرگمنت

<FrameLayout 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"
tools:context="com.narsis.navigation.Fragemnt_navigation"
android:background="@color/colorPrimary"
android:orientation="vertical"
tools:menu="@menu/menu"
>

<LinearLayout
android:id="@+id/layout_header"
android:layout_width="match_parent"
android:layout_height="150dp"
android:orientation="horizontal"
android:background="@android:drawable/toast_frame">
</LinearLayout>

<LinearLayout
android:id="@+id/layout_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>


</LinearLayout>


<!-- TODO: Update blank fragment layout -->


</FrameLayout>