Browse Source

Simplify main activity layout file

master
Anthony Restaino 9 years ago
parent
commit
3c9f63b0a6
  1. 7
      res/layout/activity_main.xml
  2. 7
      res/layout/browser_content.xml

7
res/layout/activity_main.xml

@ -21,12 +21,7 @@ @@ -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>

7
res/layout/browser_content.xml

@ -0,0 +1,7 @@ @@ -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" />
Loading…
Cancel
Save