Simplify main activity layout file

This commit is contained in:
Anthony Restaino 2015-01-27 19:18:09 -05:00
parent 61d569bb7d
commit 3c9f63b0a6
2 changed files with 8 additions and 6 deletions

View File

@ -21,12 +21,7 @@
<include layout="@layout/toolbar" />
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/primary_color" />
<include layout="@layout/browser_content" />
<include layout="@layout/search_interface" />
</LinearLayout>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/primary_color" />