To remove it permanently:
The layout containing the NavigationView widget is as follows:
<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_main" app:menu="@menu/activity_main_drawer"/>
Just remove the line: headerLayout from it:
app:headerLayout="@layout/nav_header_main"
source share