summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/main.xml')
-rw-r--r--app/src/main/res/layout/main.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/app/src/main/res/layout/main.xml b/app/src/main/res/layout/main.xml
index 914d5fa6f..46be5bc5f 100644
--- a/app/src/main/res/layout/main.xml
+++ b/app/src/main/res/layout/main.xml
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
@@ -14,7 +15,9 @@
android:id="@+id/playerFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" />
+ android:layout_alignParentBottom="true"
+ tools:layout_height="64dp"
+ tools:background="@android:color/holo_green_light" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
@@ -22,14 +25,16 @@
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="?attr/colorPrimary"
- android:minHeight="?attr/actionBarSize"/>
+ android:minHeight="?attr/actionBarSize"
+ tools:background="@android:color/holo_blue_dark" />
<FrameLayout
android:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_above="@id/playerFragment"
android:layout_below="@id/toolbar"
- android:foreground="?android:windowContentOverlay" />
+ android:foreground="?android:windowContentOverlay"
+ tools:background="@android:color/holo_red_dark" />
</RelativeLayout>