summaryrefslogtreecommitdiffstats
path: root/res/layout/toolbar.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/toolbar.xml')
-rw-r--r--res/layout/toolbar.xml24
1 files changed, 15 insertions, 9 deletions
diff --git a/res/layout/toolbar.xml b/res/layout/toolbar.xml
index cf9b8a9ca..4c2a03a4e 100644
--- a/res/layout/toolbar.xml
+++ b/res/layout/toolbar.xml
@@ -28,14 +28,20 @@
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
-<Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
+<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
- android:layout_height="@dimen/toolbar_height"
- android:paddingTop="24dp"
- android:background="@color/primary"
- android:elevation="8dp"
- android:theme="@style/ToolbarTheme"
- android:titleTextAppearance="@style/ToolbarTitleStyle"
- android:popupTheme="@style/ToolbarPopUpTheme" >
+ android:layout_height="wrap_content"
+ android:theme="@style/ToolbarTheme">
+
+ <Toolbar
+ android:id="@+id/toolbar"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/toolbar_height"
+ android:paddingTop="24dp"
+ android:background="@color/primary"
+ android:elevation="8dp"
+ android:titleTextAppearance="@style/ToolbarTitleStyle"
+ android:popupTheme="@style/ToolbarPopUpTheme" />
+
+</android.support.design.widget.AppBarLayout>
-</Toolbar>