Inhalt in der Symbolleiste anzeigen

Hallo Ich versuche, meinen Inhalt einfach unter die Symbolleiste zu stellen, aber im Moment, in dem ich meine Anwendung ausführe, ist ein Teil des Inhalts dahinter verborgen, wenn er darunter liegen sollte.

Ich habe nachgelesen, wie man ein Rahmenlayout verwendet, um es zu trennen, bin aber ein wenig festgefahren. Ich verwende derzeit eine grundlegende Android Studio-Navigationsschubladenvorlage, die mit der Software bereitgestellt wird, und habe mich gefragt, welche Änderungen ich vornehmen muss.

Mein Koordinator Layout

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<FrameLayout
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

</android.support.design.widget.CoordinatorLayout>

Mein Schubladenlayout

<android.support.v4.widget.DrawerLayout 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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<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" />

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

Welche Änderungen muss ich vornehmen?

Antworten auf die Frage(6)

Ihre Antwort auf die Frage