<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/layout_title"
android:fitsSystemWindows="true"
>
<FrameLayout
android:id="@+id/fragment_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<FrameLayout
android:id="@+id/fragment_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left"<span style="white-space:pre"> </span>//此处如果没有 这句代码,就会出现这样的报错,加上你想让菜单的位置就OK了
/>
</android.support.v4.widget.DrawerLayout>