Ignore Android warning about useless layouts

This layout keeps the menu from overwriting the first item
This commit is contained in:
TwistedUmbrella 2015-08-13 14:58:22 -04:00
parent 8c8b952434
commit c0f3241bcf
1 changed files with 37 additions and 31 deletions

View File

@ -7,10 +7,16 @@
<!-- The main content view -->
<FrameLayout
android:id="@+id/root_list"
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/root_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/header_list"
android:layout_width="match_parent"
@ -52,8 +58,8 @@
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/root_list" />
android:layout_height="match_parent" />
</LinearLayout>
</FrameLayout>
<!-- The navigation drawer -->