Ignore Android warning about useless layouts
This layout keeps the menu from overwriting the first item
This commit is contained in:
parent
8c8b952434
commit
c0f3241bcf
|
@ -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 -->
|
||||
|
||||
|
|
Loading…
Reference in New Issue