summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/main.xml
diff options
context:
space:
mode:
authorRoss Harrison <rtharrison86@gmail.com>2015-02-28 14:45:14 -0600
committerRoss Harrison <rtharrison86@gmail.com>2015-02-28 14:45:14 -0600
commitab34f84e2c837e927e359c978f5d1ea15be80971 (patch)
treea895ba367c59255666c5b4a2d7d99839c66c5177 /app/src/main/res/layout/main.xml
parent46252ce663903b8f4c9ff41b7ab05ad3c94df669 (diff)
parentc9e8af52c24b405c65fc9220a6c5c573574df672 (diff)
downloadAntennaPod-ab34f84e2c837e927e359c978f5d1ea15be80971.zip
Merge branch 'master' of https://github.com/AntennaPod/AntennaPod into AntennaPod-master
core/src/main/java/de/danoeh/antennapod/core/storage/DBWriter.java
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>