blob: 03ce5aee78470fd4fde49e44dd14993a3c248df5 [file] [log] [blame]
Adrien Béraudb179bab2015-10-08 12:04:22 -04001<?xml version="1.0" encoding="utf-8"?>
Adrien Béraud91f88742019-09-09 00:46:46 -04002<androidx.coordinatorlayout.widget.CoordinatorLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lision0b16eea2016-05-27 15:24:54 -04004 xmlns:app="http://schemas.android.com/apk/res-auto"
Adrien Béraudb179bab2015-10-08 12:04:22 -04005 xmlns:tools="http://schemas.android.com/tools"
Adrien Béraud159fdba2015-10-21 16:39:42 -04006 android:layout_width="match_parent"
Adrien Béraudb179bab2015-10-08 12:04:22 -04007 android:layout_height="match_parent"
8 tools:context=".client.ConversationActivity">
9
Adrien Béraud91f88742019-09-09 00:46:46 -040010 <com.google.android.material.appbar.AppBarLayout
11 android:id="@+id/toolbar_layout"
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 app:layout_constraintTop_toTopOf="parent">
15
16 <com.google.android.material.appbar.MaterialToolbar
Alexandre Lision0b16eea2016-05-27 15:24:54 -040017 android:id="@+id/main_toolbar"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
Alexandre Lision0b16eea2016-05-27 15:24:54 -040020 android:layout_alignParentStart="true"
21 android:layout_alignParentTop="true"
Alexandre Lision0b16eea2016-05-27 15:24:54 -040022 android:elevation="4dp"
Adrien Béraud91f88742019-09-09 00:46:46 -040023 android:height="?attr/actionBarSize"
24 style="@style/Widget.MaterialComponents.Toolbar.Surface"
Adrien Béraudc2790922020-04-28 17:34:03 -040025 app:titleTextAppearance="@style/TextAppearance.MaterialComponents.Body1"
26 app:subtitleTextAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"
Alexandre Lision0b16eea2016-05-27 15:24:54 -040027 app:contentInsetStart="72dp"
28 app:elevation="4dp"
Adrien Béraudc2790922020-04-28 17:34:03 -040029 app:titleMarginStart="24dp"
30 tools:title="Adrien"
31 tools:subtitle="adrienberaud"
32 tools:navigationIcon="@drawable/baseline_person_24" />
Adrien Béraud91f88742019-09-09 00:46:46 -040033
34 </com.google.android.material.appbar.AppBarLayout>
Alexandre Lision0b16eea2016-05-27 15:24:54 -040035
Aline Bonnet9c6defe2016-12-21 13:21:02 -050036 <FrameLayout
37 android:id="@+id/main_frame"
Adrien Béraud159fdba2015-10-21 16:39:42 -040038 android:layout_width="match_parent"
Aline Bonnet9c6defe2016-12-21 13:21:02 -050039 android:layout_height="match_parent"
Adrien Béraud78ae7b92018-08-25 19:04:17 -040040 android:layout_below="@id/main_toolbar"
Adrien Béraud91f88742019-09-09 00:46:46 -040041 android:layout_alignParentStart="true"/>
42</androidx.coordinatorlayout.widget.CoordinatorLayout>