add toolbar layout
Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/commit/79b8636c Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/tree/79b8636c Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/diff/79b8636c Branch: refs/heads/master Commit: 79b8636c7fbc5566c09a857b9e1a6db87bf4c3ad Parents: dc880ac Author: Sagar <[email protected]> Authored: Sun Jul 10 00:27:44 2016 +0530 Committer: Sagar <[email protected]> Committed: Sun Jul 10 00:27:44 2016 +0530 ---------------------------------------------------------------------- app/src/main/res/layout/appbar.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-mobile/blob/79b8636c/app/src/main/res/layout/appbar.xml ---------------------------------------------------------------------- diff --git a/app/src/main/res/layout/appbar.xml b/app/src/main/res/layout/appbar.xml new file mode 100644 index 0000000..f7793a6 --- /dev/null +++ b/app/src/main/res/layout/appbar.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<android.support.v7.widget.Toolbar + xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="match_parent" + android:id="@+id/toolbar" + android:layout_height="?attr/actionBarSize" + android:background="?attr/colorPrimary" + android:paddingTop="@dimen/app_bar_top_padding" + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" + app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/> +
