2015-08-05 19:48:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-10-18 18:17:57 +02:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-13 12:06:41 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2016-01-19 20:50:58 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-08-13 12:06:41 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
|
tools:context=".ComposeMessageActivity">
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2016-08-13 12:06:41 +02:00
|
|
|
<FrameLayout android:id="@+id/content"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginTop="@dimen/action_bar_offset"
|
|
|
|
|
tools:context=".ComposeMessageActivity"
|
|
|
|
|
tools:layout="@layout/fragment_compose_message"/>
|
2015-08-05 19:48:41 +02:00
|
|
|
|
2015-08-14 17:25:05 +02:00
|
|
|
<android.support.design.widget.AppBarLayout
|
2015-10-18 18:17:57 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
2015-08-05 19:48:41 +02:00
|
|
|
|
2015-08-14 17:25:05 +02:00
|
|
|
<android.support.v7.widget.Toolbar
|
2015-10-18 18:17:57 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
|
android:elevation="4dp"
|
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
2016-01-19 20:50:58 +01:00
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
|
|
|
|
|
tools:ignore="UnusedAttribute"/>
|
2015-08-14 17:25:05 +02:00
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|
2015-08-05 19:48:41 +02:00
|
|
|
|